From: Martin v. Löwis Date: Fri, 17 Oct 2008 13:47:20 +0000 (+0000) Subject: Merged revisions 66958 via svnmerge from X-Git-Tag: v3.0rc2~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c820eaf34793284c03e45b0346d2deca18cb84b5;p=python Merged revisions 66958 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r66958 | martin.v.loewis | 2008-10-17 15:43:01 +0200 (Fr, 17 Okt 2008) | 1 line Issue #4091: Install pythonxy.dll in system32 again. ........ --- diff --git a/Misc/NEWS b/Misc/NEWS index ede8e52097..72b807348d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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 022067c954..d30268881a 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)