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:
Diffstat (limited to 'build_files/buildbot/slave_compile.py')
-rw-r--r--build_files/buildbot/slave_compile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 6a695d3af5d..209253296be 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -55,7 +55,7 @@ else:
# scons
os.chdir(blender_dir)
scons_cmd = ['python', 'scons/scons.py']
- scons_options = []
+ scons_options = ['BF_FANCY=False']
if builder.find('linux') != -1:
import shutil
@@ -65,7 +65,7 @@ else:
build_dir = os.path.join('..', 'build', builder)
install_dir = os.path.join('..', 'install', builder)
- common_options = ['BF_INSTALLDIR=' + install_dir]
+ common_options = ['BF_INSTALLDIR=' + install_dir] + scons_options
# Clean install directory so we'll be sure there's no
if os.path.isdir(install_dir):