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]"
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to