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>2013-03-11 18:16:41 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-11 18:16:41 +0400
commitb93c44b8ccffeb59929aec0d4777c9fd1760ab95 (patch)
treed1951a3c6b0cbdc400b802c35dfafd7b8873a988 /build_files
parent5b53a17bfb1b429b6f7bc74ddda9aa952bd5070d (diff)
Mixed paths to redist libraries in recent commit
Diffstat (limited to 'build_files')
-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 26966c8abe1..259b42760f8 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -156,9 +156,9 @@ else:
if retcode == 0:
dlls = ('msvcm90.dll', 'msvcp90.dll', 'msvcr90.dll', 'vcomp90.dll', 'Microsoft.VC90.CRT.manifest', 'Microsoft.VC90.OpenMP.manifest')
if bitness == '32':
- dlls_path = 'C:\\b\\redist\\amd64'
- else:
dlls_path = 'C:\\b\\redist\\x86'
+ else:
+ dlls_path = 'C:\\b\\redist\\amd64'
for dll in dlls:
shutil.copyfile(os.path.join(dlls_path, dll), os.path.join(install_dir, dll))
sys.exit(retcode)