diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-10-17 13:43:01 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-10-17 13:43:01 (GMT) |
commit | 0f3e7697dcc6d091bb0792015dfe501bd41f25b4 (patch) | |
tree | 25560b69480b1557026148f64803bf18979556dc | |
parent | 336680ecead72c4f5481d16c3e6f8458ccb01832 (diff) | |
download | cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.zip cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.tar.gz cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.tar.bz2 |
Issue #4091: Install pythonxy.dll in system32 again.
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Tools/msi/msi.py | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -32,6 +32,8 @@ Library Build ----- +- Issue #4091: Install pythonxy.dll in system32 again. + - Issue #4018: Disable "for me" installations on Vista. - Issue #3758: Add ``patchcheck`` build target to .PHONY. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 707786e..517c476 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -915,9 +915,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) |