[Python-3000-checkins] r57751 - python/branches/py3k/Tools/msi/msi.py

martin.v.loewis python-3000-checkins at python.org
Thu Aug 30 20:27:06 CEST 2007


Author: martin.v.loewis
Date: Thu Aug 30 20:27:06 2007
New Revision: 57751

Modified:
   python/branches/py3k/Tools/msi/msi.py
Log:
Bug #1746880: Correctly install DLLs into system32 folder on Win64.

Modified: python/branches/py3k/Tools/msi/msi.py
==============================================================================
--- python/branches/py3k/Tools/msi/msi.py	(original)
+++ python/branches/py3k/Tools/msi/msi.py	Thu Aug 30 20:27:06 2007
@@ -168,7 +168,7 @@
     testprefix = ''
 
 if msilib.Win64:
-    SystemFolderName = "[SystemFolder64]"
+    SystemFolderName = "[System64Folder]"
 else:
     SystemFolderName = "[SystemFolder]"
 


More information about the Python-3000-checkins mailing list