[Python-checkins] r57750 - in python/trunk: Misc/NEWS Tools/msi/msi.py
martin.v.loewis
python-checkins at python.org
Thu Aug 30 20:25:48 CEST 2007
Author: martin.v.loewis
Date: Thu Aug 30 20:25:47 2007
New Revision: 57750
Modified:
python/trunk/Misc/NEWS
python/trunk/Tools/msi/msi.py
Log:
Bug #1746880: Correctly install DLLs into system32 folder on Win64.
Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS (original)
+++ python/trunk/Misc/NEWS Thu Aug 30 20:25:47 2007
@@ -949,6 +949,8 @@
Build
-----
+- Bug #1746880: Correctly install DLLs into system32 folder on Win64.
+
- Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+.
- Stop supporting AtheOS and cause a build error in configure for the platform.
Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py (original)
+++ python/trunk/Tools/msi/msi.py Thu Aug 30 20:25:47 2007
@@ -167,7 +167,7 @@
testprefix = ''
if msilib.Win64:
- SystemFolderName = "[SystemFolder64]"
+ SystemFolderName = "[System64Folder]"
else:
SystemFolderName = "[SystemFolder]"
More information about the Python-checkins
mailing list