summaryrefslogtreecommitdiffstats
path: root/Tools/msi/msi.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-10-17 13:43:01 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-10-17 13:43:01 (GMT)
commit0f3e7697dcc6d091bb0792015dfe501bd41f25b4 (patch)
tree25560b69480b1557026148f64803bf18979556dc /Tools/msi/msi.py
parent336680ecead72c4f5481d16c3e6f8458ccb01832 (diff)
downloadcpython-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.py4
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)