Mixed paths to redist libraries in recent commit

This commit is contained in:
Sergey Sharybin 2013-03-11 14:16:41 +00:00
parent 5b53a17bfb
commit b93c44b8cc

@ -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)