diff options
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Tools/msi/msi.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -67,6 +67,8 @@ Extension Modules Build ----- +- Issue #4091: Install pythonxy.dll in system32 again. + - Issue #4018: Disable "for me" installations on Vista. Tools/Demos diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 022067c..d302688 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -916,9 +916,7 @@ def add_files(db): root.add_file("%s/pythonw.exe" % PCBUILD) # msidbComponentAttributesSharedDllRefCount = 8, see "Component Table" - #dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".") - #install python30.dll into root dir for now - dlldir = root + dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".") pydll = "python%s%s.dll" % (major, minor) pydllsrc = os.path.join(srcdir, PCBUILD, pydll) |