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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-06-26 19:06:31 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-26 19:07:03 +0300
commitae396912fb4dfb6fd85e38d349e5c8394bc69d8b (patch)
tree5c75b2d15db39f5aeb90ef4caf734a2f36726b68
parent28f472472b2e721d4492b6860755518f440f5ca5 (diff)
Buildbot: Fix scl command prefix
Now it should work correct with command passed as an individual elements of a list.
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index c71217e56dc..70958ef9d85 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -89,7 +89,7 @@ if 'cmake' in builder:
chroot_name = 'buildbot_' + deb_name + '_i686'
command_prefix = ['schroot', '-c', chroot_name, '--']
elif glibc == 'glibc217':
- command_prefix = ['scl', 'enable', 'devtoolset-6', 'bash']
+ command_prefix = ['scl', 'enable', 'devtoolset-6', '--']
cmake_options.append("-C" + os.path.join(blender_dir, cmake_config_file))