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
path: root/tools
diff options
context:
space:
mode:
authorJean-Luc Peurière <jlp@nerim.net>2006-10-04 00:25:59 +0400
committerJean-Luc Peurière <jlp@nerim.net>2006-10-04 00:25:59 +0400
commit0efdd46cea087e6ee4c6e21d396c17b301ee40fd (patch)
treed2c4077d48a31042552f14537f707a854cd62ddd /tools
parent3dddba4e06a44ae17c51f6290d62132d920127a8 (diff)
fixing scons build for Os X with verse enabled.
there is no need to bundle the verse binary. Blenderplayer build is still broken. Verse maintener please add the needed stubs for it
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 9e94dd44ea4..4f7fd2ebcdc 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -283,10 +283,17 @@ def AppIt(target=None, source=None, env=None):
import commands
import os.path
+
a = '%s' % (target[0])
builddir, b = os.path.split(a)
+
bldroot = env.Dir('.').abspath
binary = env['BINARYKIND']
+
+ if b=='verse':
+ print bc.OKBLUE+"no bundle for verse"+bc.ENDC
+ return 0
+
sourcedir = bldroot + '/source/darwin/%s.app'%binary
sourceinfo = bldroot + "/source/darwin/%s.app/Contents/Info.plist"%binary