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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-05-07 07:37:16 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-05-07 07:37:16 +0400
commitcf2e1e2857cfc5b3c2848c7fc6c9d919ac72fabb (patch)
tree55ba53a4a7d1ce79630acfcd826920f5516f9ed5 /tools
parent959f1a0f92f09c08de88626e9958ab1cca37e02e (diff)
soc=2008-mxcurioni: reverted back to compiling swig as a binary, instead of as a library
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 17010fcd308..92ee1e3e6ec 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -462,7 +462,8 @@ class BlenderEnvironment(SConsEnvironment):
program_list.append(prog)
if lenv['OURPLATFORM']=='darwin':
lenv['BINARYKIND'] = binarykind
- lenv.AddPostAction(prog,Action(AppIt,strfunction=my_appit_print))
+ if progname != "swig":
+ lenv.AddPostAction(prog,Action(AppIt,strfunction=my_appit_print))
return prog
def Glob(lenv, pattern):