Changeset 698
- Timestamp:
- 12/05/08 23:01:51 (1 month ago)
- Files:
-
- branches/CoreData/SapphireFrappliance/Resources/Info.plist (modified) (2 diffs)
- branches/CoreData/SapphireFrappliance/Sapphire.xcodeproj/project.pbxproj (modified) (2 diffs)
- branches/CoreData/SapphireFrappliance/scripts/getSVNRevision.sh (moved) (moved from branches/CoreData/SapphireFrappliance/scripts/getSVNRevision) (1 diff, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/CoreData/SapphireFrappliance/Resources/Info.plist
r557 r698 20 20 <string>????</string> 21 21 <key>CFBundleVersion</key> 22 <string>1.0b 6.1(SVN_REVISION)</string>22 <string>1.0b7 (SVN_REVISION)</string> 23 23 <key>FRApplianceCategoryDescriptors</key> 24 24 <array> … … 107 107 <real>-0.055</real> 108 108 <key>FRApplianceIconReflectionOffset</key> 109 <real>-0.2 1</real>109 <real>-0.20999999999999999</real> 110 110 <key>FRAppliancePreferedOrderValue</key> 111 <real>0 </real>111 <real>0.0</real> 112 112 <key>FRRemoteAppliance</key> 113 113 <true/> branches/CoreData/SapphireFrappliance/Sapphire.xcodeproj/project.pbxproj
r696 r698 271 271 containerPortal = 089C1669FE841209C02AAC07 /* Project object */; 272 272 proxyType = 1; 273 remoteGlobalIDString = F5BA7E640EE3368500A5C679 /* SapphireRescanDir */;273 remoteGlobalIDString = F5BA7E640EE3368500A5C679; 274 274 remoteInfo = SapphireRescanDir; 275 275 }; … … 1249 1249 runOnlyForDeploymentPostprocessing = 0; 1250 1250 shellPath = /bin/sh; 1251 shellScript = "source scripts/getSVNRevision ";1251 shellScript = "source scripts/getSVNRevision.sh"; 1252 1252 }; 1253 1253 /* End PBXShellScriptBuildPhase section */ branches/CoreData/SapphireFrappliance/scripts/getSVNRevision.sh
- Property svn:mergeinfo set
r174 r698 1 PATH=" $PATH:/opt/local/bin:/usr/local/bin:/usr/local/subversion/bin:/sw/bin"2 SVNREV= `svn info . | grep 'Revision' | awk '{print $2}'`3 mkdir -p `dirname $SCRIPT_OUTPUT_FILE_0`4 echo "#define SVN_REVISION $SVNREV" > $SCRIPT_OUTPUT_FILE_05 echo "#define SVN_REVISION_C_STRING \"$SVNREV\"" >> $SCRIPT_OUTPUT_FILE_01 PATH="/opt/local/bin:/usr/local/bin:/usr/local/subversion/bin:/sw/bin:$PATH" 2 SVNREV="$(svnversion -n .)" 3 mkdir -p "$(dirname "$SCRIPT_OUTPUT_FILE_0")" 4 echo "#define SVN_REVISION $SVNREV" > "$SCRIPT_OUTPUT_FILE_0" 5 echo "#define SVN_REVISION_C_STRING \"$SVNREV\"" >> "$SCRIPT_OUTPUT_FILE_0"
