From ae396912fb4dfb6fd85e38d349e5c8394bc69d8b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 26 Jun 2019 18:06:31 +0200 Subject: Buildbot: Fix scl command prefix Now it should work correct with command passed as an individual elements of a list. --- build_files/buildbot/slave_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v1.2.3