]> granicus.if.org Git - python/commitdiff
Bug #1746880: Correctly install DLLs into system32 folder on Win64.
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 30 Aug 2007 18:25:47 +0000 (18:25 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 30 Aug 2007 18:25:47 +0000 (18:25 +0000)
Misc/NEWS
Tools/msi/msi.py

index 1d14835b2c96bab98f87b8cb3c3817586717c6db..00c1ffc884b8fdcfba81d87da4fd50bc58ceb2c0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -949,6 +949,8 @@ Tools/Demos
 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.
index 6692597a01e707f39c71dccf0c5259dd2aaf77f3..6545f454f18eee74c691b61e09858b8c2330f2fc 100644 (file)
@@ -167,7 +167,7 @@ else:
     testprefix = ''
 
 if msilib.Win64:
-    SystemFolderName = "[SystemFolder64]"
+    SystemFolderName = "[System64Folder]"
 else:
     SystemFolderName = "[SystemFolder]"