[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57473] trunk/blender/build_files/buildbot /slave_compile.py: Buildbot: use relative path for redistributable dlls on windows.

Brecht Van Lommel brechtvanlommel at pandora.be
Sat Jun 15 16:01:12 CEST 2013


Revision: 57473
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57473
Author:   blendix
Date:     2013-06-15 14:01:12 +0000 (Sat, 15 Jun 2013)
Log Message:
-----------
Buildbot: use relative path for redistributable dlls on windows.

Modified Paths:
--------------
    trunk/blender/build_files/buildbot/slave_compile.py

Modified: trunk/blender/build_files/buildbot/slave_compile.py
===================================================================
--- trunk/blender/build_files/buildbot/slave_compile.py	2013-06-15 13:33:28 UTC (rev 57472)
+++ trunk/blender/build_files/buildbot/slave_compile.py	2013-06-15 14:01:12 UTC (rev 57473)
@@ -158,9 +158,9 @@
         if builder.find('win') != -1:
             dlls = ('msvcm90.dll', 'msvcp90.dll', 'msvcr90.dll', 'vcomp90.dll', 'Microsoft.VC90.CRT.manifest', 'Microsoft.VC90.OpenMP.manifest')
             if builder.find('win64') == -1:
-                dlls_path = 'C:\\b\\redist\\x86'
+                dlls_path = '..\\..\\..\\redist\\x86'
             else:
-                dlls_path = 'C:\\b\\redist\\amd64'
+                dlls_path = '..\\..\\..\\redist\\amd64'
             for dll in dlls:
                 shutil.copyfile(os.path.join(dlls_path, dll), os.path.join(install_dir, dll))
 




More information about the Bf-blender-cvs mailing list