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-04-18 12:57:44 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-04-18 12:57:44 +0300
commit3bc73c1b61daef26e20dbfa389bd7fbda210a344 (patch)
treee29d762c4f0cf43606473e8e0f2cf4cec9b2437e /build_files
parenta9e34f58bcbcb33b148c7396c81a799a6a3a93f9 (diff)
parentcc9528d3c8e71372528471e8071f494cdec067ee (diff)
Merge branch 'blender2.7'
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 1d5d6ca1650..8b45bc77189 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -150,6 +150,12 @@ if 'cmake' in builder:
if os.path.exists('CMakeCache.txt'):
print("Removing CMake cache")
os.remove('CMakeCache.txt')
+ # Remove buildinfo files to force buildbot to re-generate them.
+ for buildinfo in ('buildinfo.h', 'buildinfo.h.txt', ):
+ full_path = os.path.join('source', 'creator', buildinfo)
+ if os.path.exists(full_path):
+ print("Removing {}" . format(buildinfo))
+ os.remove(full_path)
retcode = subprocess.call(target_chroot_prefix + ['cmake', blender_dir] + target_cmake_options)
if retcode != 0:
print('Configuration FAILED!')