diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2007-08-30 18:37:41 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2007-08-30 18:37:41 (GMT) |
| commit | aa1e005d261ffa43ee4071ac79db97830eb8386d (patch) | |
| tree | 6ab7f476e09ff721f03053052be9acdf1c29640c | |
| parent | d4c096900bf553e9339074da6eefeff388eac208 (diff) | |
| download | cpython-aa1e005d261ffa43ee4071ac79db97830eb8386d.zip cpython-aa1e005d261ffa43ee4071ac79db97830eb8386d.tar.gz cpython-aa1e005d261ffa43ee4071ac79db97830eb8386d.tar.bz2 | |
Bug #1746880: Correctly install DLLs into system32 folder on Win64.
| -rw-r--r-- | Misc/NEWS | 2 | ||||
| -rw-r--r-- | Tools/msi/msi.py | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -113,6 +113,8 @@ Documentation Build ----- +- Bug #1746880: Correctly install DLLs into system32 folder on Win64. + - Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+. - Patch #1673122: Use an explicit path to libtool when building a framework. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 0229fb7..181c2ea 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -166,7 +166,7 @@ else: testprefix = '' if msilib.Win64: - SystemFolderName = "[SystemFolder64]" + SystemFolderName = "[System64Folder]" else: SystemFolderName = "[SystemFolder]" @@ -877,7 +877,7 @@ def add_files(db): if not have_ctypes: print "WARNING: _ctypes.pyd not found, ctypes will not be included" extensions.remove("_ctypes.pyd") - + # Add all .py files in Lib, except lib-tk, test dirs={} pydirs = [(root,"Lib")] |
