Changeset 3621

Show
Ignore:
Timestamp:
03/16/07 20:36:41 (2 years ago)
Author:
timothy
Message:

Turn off the setenv lines for scripts.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Chat Core.xcodeproj/project.pbxproj

    r3586 r3621  
    503503                        shellPath = /bin/sh; 
    504504                        shellScript = "cd $SRCROOT/Frameworks\nrm -rf $SRCROOT/*.framework\ntar xzf frameworks.tar.gz\n"; 
     505                        showEnvVarsInLog = 0; 
    505506                }; 
    506507/* End PBXShellScriptBuildPhase section */ 
  • trunk/Colloquy.xcodeproj/project.pbxproj

    r3586 r3621  
    22682268                        shellPath = "/usr/bin/perl -w"; 
    22692269                        shellScript = "# Xcode auto-versioning script for Subversion\n# by Axel Andersson, modified by Daniel Jalkut and Timothy Hatcher\n\nuse strict;\n\n# Get the current subversion revision number and use it to set the CFBundleVersion value\nmy $infoFile = \"$ENV{BUILT_PRODUCTS_DIR}/$ENV{INFOPLIST_PATH}\";\nmy $version = undef;\n$version = `/usr/bin/svnversion -n .` if -e \"/usr/bin/svnversion\";\n$version = `/usr/local/bin/svnversion -n .` if -e \"/usr/local/bin/svnversion\";\n$version = `/opt/local/bin/svnversion -n .` if -e \"/opt/local/bin/svnversion\";\n\n# Match the last group of digits:\n($version =~ m/(\\d+)[MS]*$/) && ($version = $1);\n\nif( $version ) {\n\topen( FH, \"$infoFile\" ) or die \"$0: $infoFile: $!\";\n\tmy $content = join( \"\", <FH> );\n\tclose( FH );\n\n\t$content =~ s/(\\s+<key>CFBundleVersion<\\/key>\\s+<string>).*?(<\\/string>)/$1$version$2/;\n\n\topen( FH, \">$infoFile\" ) or die \"$0: $infoFile: $!\";\n\tprint FH $content;\n\tclose( FH );\n}\n"; 
     2270                        showEnvVarsInLog = 0; 
    22702271                }; 
    22712272                1C7A60B509FDE8560029AC64 /* Run Tests */ = { 
     
    22962297                        shellPath = /bin/sh; 
    22972298                        shellScript = "find \"$TARGET_BUILD_DIR/$FRAMEWORKS_FOLDER_PATH\" -name \"Headers\" -print0 | xargs -0 rm -rf\n"; 
     2299                        showEnvVarsInLog = 0; 
    22982300                }; 
    22992301                1CAF6496099EA9350036A727 /* Unarchive Frameworks */ = { 
     
    23172319                        shellPath = /bin/sh; 
    23182320                        shellScript = "cd $SRCROOT/Frameworks\nrm -rf $SRCROOT/*.framework\ntar xzf frameworks.tar.gz\nranlib $SRCROOT/Frameworks/*.a\n"; 
     2321                        showEnvVarsInLog = 0; 
    23192322                }; 
    23202323/* End PBXShellScriptBuildPhase section */ 
  • trunk/Makefile

    r3481 r3621  
    66RM = rm 
    77COMMON_XCODE_OPTIONS = -project Colloquy.xcodeproj -target 'Colloquy (Application)' 
    8 IGNORE_COMMAND = grep -v setenv && exit $${PIPESTATUS[0]} 
    98 
    109all release r: 
    11         ( xcodebuild $(COMMON_XCODE_OPTIONS)  -configuration Release build | $(IGNORE_COMMAND) ) 
     10        xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Release build 
    1211 
    1312universal u: 
    14         ( xcodebuild $(COMMON_XCODE_OPTIONS)  -configuration 'Release (Universal)' build | $(IGNORE_COMMAND) ) 
     13        xcodebuild $(COMMON_XCODE_OPTIONS) -configuration 'Release (Universal)' build 
    1514 
    1615development dev d: 
    17         ( xcodebuild $(COMMON_XCODE_OPTIONS)  -configuration Development build | $(IGNORE_COMMAND) ) 
     16        xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Development build 
    1817 
    1918clean c: