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:
authorMartin Poirier <theeth@yahoo.com>2009-08-19 05:03:34 +0400
committerMartin Poirier <theeth@yahoo.com>2009-08-19 05:03:34 +0400
commiteb6c5d7a7f722493f38255825b908e0f3df831f3 (patch)
treef85358b3497f7ee95912952d9d54c2f37df0a09a /tools/Blender.py
parent184ac26dd0187d70985cdc49ae527a1900fce840 (diff)
New scons option (WITHOUT_BF_PYTHON_INSTALL) to disable copying python files from system
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 0d2671dbfac..789a6981558 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -587,7 +587,7 @@ class BlenderEnvironment(SConsEnvironment):
lenv.AddPostAction(prog,Action(AppIt,strfunction=my_appit_print))
elif os.sep == '/': # any unix
if lenv['WITH_BF_PYTHON']:
- if not lenv['WITHOUT_BF_INSTALL']:
+ if not lenv['WITHOUT_BF_INSTALL'] and not lenv['WITHOUT_BF_PYTHON_INSTALL']:
lenv.AddPostAction(prog,Action(PyInstall,strfunction=my_pyinst_print))
return prog