Changeset 3621
- Timestamp:
- 03/16/07 20:36:41 (2 years ago)
- Files:
-
- trunk/Chat Core.xcodeproj/project.pbxproj (modified) (1 diff)
- trunk/Colloquy.xcodeproj/project.pbxproj (modified) (3 diffs)
- trunk/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Chat Core.xcodeproj/project.pbxproj
r3586 r3621 503 503 shellPath = /bin/sh; 504 504 shellScript = "cd $SRCROOT/Frameworks\nrm -rf $SRCROOT/*.framework\ntar xzf frameworks.tar.gz\n"; 505 showEnvVarsInLog = 0; 505 506 }; 506 507 /* End PBXShellScriptBuildPhase section */ trunk/Colloquy.xcodeproj/project.pbxproj
r3586 r3621 2268 2268 shellPath = "/usr/bin/perl -w"; 2269 2269 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; 2270 2271 }; 2271 2272 1C7A60B509FDE8560029AC64 /* Run Tests */ = { … … 2296 2297 shellPath = /bin/sh; 2297 2298 shellScript = "find \"$TARGET_BUILD_DIR/$FRAMEWORKS_FOLDER_PATH\" -name \"Headers\" -print0 | xargs -0 rm -rf\n"; 2299 showEnvVarsInLog = 0; 2298 2300 }; 2299 2301 1CAF6496099EA9350036A727 /* Unarchive Frameworks */ = { … … 2317 2319 shellPath = /bin/sh; 2318 2320 shellScript = "cd $SRCROOT/Frameworks\nrm -rf $SRCROOT/*.framework\ntar xzf frameworks.tar.gz\nranlib $SRCROOT/Frameworks/*.a\n"; 2321 showEnvVarsInLog = 0; 2319 2322 }; 2320 2323 /* End PBXShellScriptBuildPhase section */ trunk/Makefile
r3481 r3621 6 6 RM = rm 7 7 COMMON_XCODE_OPTIONS = -project Colloquy.xcodeproj -target 'Colloquy (Application)' 8 IGNORE_COMMAND = grep -v setenv && exit $${PIPESTATUS[0]}9 8 10 9 all release r: 11 ( xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Release build | $(IGNORE_COMMAND) )10 xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Release build 12 11 13 12 universal u: 14 ( xcodebuild $(COMMON_XCODE_OPTIONS) -configuration 'Release (Universal)' build | $(IGNORE_COMMAND) )13 xcodebuild $(COMMON_XCODE_OPTIONS) -configuration 'Release (Universal)' build 15 14 16 15 development dev d: 17 ( xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Development build | $(IGNORE_COMMAND) )16 xcodebuild $(COMMON_XCODE_OPTIONS) -configuration Development build 18 17 19 18 clean c:
