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:
authorStefan Gartner <stefang@aon.at>2010-08-04 15:07:14 +0400
committerStefan Gartner <stefang@aon.at>2010-08-04 15:07:14 +0400
commit2f8f86e4f6afe8ecdff5c57bdbcc1c0d9b18301e (patch)
treeb4bc86078aafa8ea01d7c6a645a5478e250462a0 /build_files/scons
parent247fbfaf0321abadda3ec59fde2f32af24b594b2 (diff)
fix path to release/python.zip for scons and cmake
I hope this doesn't break anything
Diffstat (limited to 'build_files/scons')
-rw-r--r--build_files/scons/tools/Blender.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/build_files/scons/tools/Blender.py b/build_files/scons/tools/Blender.py
index 546f1e540cf..89c4ef9cac9 100644
--- a/build_files/scons/tools/Blender.py
+++ b/build_files/scons/tools/Blender.py
@@ -501,10 +501,7 @@ def AppIt(target=None, source=None, env=None):
installdir = env['BF_INSTALLDIR']
print("compiled architecture: %s"%(osxarch))
print("Installing to %s"%(installdir))
- if libdir == '../lib/darwin-9.x.universal':
- python_zip = 'python_' + osxarch + '.zip' # set specific python_arch.zip
- else:
- python_zip = 'python.zip' # compatibility for darwin8 python.zip
+ python_zip = 'python_' + osxarch + '.zip' # set specific python_arch.zip
print("unzipping to app-bundle: %s"%(python_zip))
bldroot = env.Dir('.').abspath
binary = env['BINARYKIND']