Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2012-02-25 15:21:20 +0400
committerJens Verwiebe <info@jensverwiebe.de>2012-02-25 15:21:20 +0400
commitf8d55b5bf0e911161825836795d4f111581b9601 (patch)
tree941b58cb37551f03ea49ddcf3cbd449cd78a83be /SConstruct
parentbbb77f58788fea1c8892fa3598193bdf9b971469 (diff)
OSX: scons: fix own mistake, truncate output of xcode-build -version to major.minor version in config to change the var not only the print
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 75cb8eec338..9a1f9234d06 100644
--- a/SConstruct
+++ b/SConstruct
@@ -274,7 +274,7 @@ if 'blenderlite' in B.targets:
# Extended OSX_SDK and 3D_CONNEXION_CLIENT_LIBRARY and JAckOSX detection for OSX
if env['OURPLATFORM']=='darwin':
- print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'][6:][:3] + " --"
+ print B.bc.OKGREEN + "Detected Xcode version: -- " + B.bc.ENDC + env['XCODE_CUR_VER'] + " --"
print "Available " + env['MACOSX_SDK_CHECK']
if not 'Mac OS X 10.5' in env['MACOSX_SDK_CHECK']:
print B.bc.OKGREEN + "MacOSX10.5.sdk not available:" + B.bc.ENDC + " using MacOSX10.6.sdk"