From 90f667576fa50c66d91d48226d7c6fa1a728cb59 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 27 Aug 2015 12:22:44 +0200 Subject: [PATCH] Buildbot: Correction to previous commit Previous commit didn't really disable cuda binaries for some reason. --- build_files/buildbot/slave_compile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index 87beca28a66..ee89bc90225 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -54,6 +54,8 @@ if 'cmake' in builder: cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake") if 'win32' not in builder: cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1") + else: + cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=0") # configure and make retcode = subprocess.call(['cmake', blender_dir] + cmake_options) if retcode != 0: