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/btools.py
parent184ac26dd0187d70985cdc49ae527a1900fce840 (diff)
New scons option (WITHOUT_BF_PYTHON_INSTALL) to disable copying python files from system
Diffstat (limited to 'tools/btools.py')
-rwxr-xr-xtools/btools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/btools.py b/tools/btools.py
index 0314aba25b5..3e80ac453ce 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -59,8 +59,8 @@ def validate_arguments(args, bc):
'BF_CXX', 'WITH_BF_STATICCXX', 'BF_CXX_LIB_STATIC',
'BF_TWEAK_MODE', 'BF_SPLIT_SRC',
'WITHOUT_BF_INSTALL',
+ 'WITHOUT_BF_PYTHON_INSTALL',
'WITH_BF_OPENMP',
- 'WITHOUT_BF_INSTALL',
'BF_FANCY', 'BF_QUIET',
'BF_X264_CONFIG',
'BF_XVIDCORE_CONFIG',
@@ -363,6 +363,7 @@ def read_opts(cfg, args):
(BoolVariable('BF_TWEAK_MODE', 'Enable tweak mode if true', False)),
(BoolVariable('BF_SPLIT_SRC', 'Split src lib into several chunks if true', False)),
(BoolVariable('WITHOUT_BF_INSTALL', 'dont install if true', False)),
+ (BoolVariable('WITHOUT_BF_PYTHON_INSTALL', 'dont install Python modules if true', False)),
(BoolVariable('BF_FANCY', 'Enable fancy output if true', True)),
(BoolVariable('BF_QUIET', 'Enable silent output if true', True)),
(BoolVariable('WITH_BF_BINRELOC', 'Enable relocatable binary (linux only)', False)),