From: Martin v. Löwis Date: Thu, 30 Aug 2007 18:27:06 +0000 (+0000) Subject: Bug #1746880: Correctly install DLLs into system32 folder on Win64. X-Git-Tag: v3.0a1~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=47cc2a00a14bdddcbb0653e33542f7eb2637ef0d;p=thirdparty%2FPython%2Fcpython.git Bug #1746880: Correctly install DLLs into system32 folder on Win64. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index f266fcc93e54..fdc77ce32e48 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -168,7 +168,7 @@ else: testprefix = '' if msilib.Win64: - SystemFolderName = "[SystemFolder64]" + SystemFolderName = "[System64Folder]" else: SystemFolderName = "[SystemFolder]"