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 /Tools/msi/msi.py | |
parent | 336680ecead72c4f5481d16c3e6f8458ccb01832 (diff) | |
download | cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.zip cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.tar.gz cpython-0f3e7697dcc6d091bb0792015dfe501bd41f25b4.tar.bz2 |
Issue #4091: Install pythonxy.dll in system32 again.
Diffstat (limited to 'Tools/msi/msi.py')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 1 insertions, 3 deletions
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) |