diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-03-16 11:03:13 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-03-16 11:03:13 (GMT) |
commit | 09c86afb1e3b2f1af8a03f77f2dd146429f56add (patch) | |
tree | 1a308c604fdc5943c3f94d5f44fc4e2b22266825 | |
parent | a6d9abfc9e2c91c2d1cf6d02106d6a07f50b5ed5 (diff) | |
download | cpython-09c86afb1e3b2f1af8a03f77f2dd146429f56add.zip cpython-09c86afb1e3b2f1af8a03f77f2dd146429f56add.tar.gz cpython-09c86afb1e3b2f1af8a03f77f2dd146429f56add.tar.bz2 |
Merged revisions 78976 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78976 | martin.v.loewis | 2010-03-15 14:00:17 +0100 (Mo, 15 Mär 2010) | 1 line
Issue #6716: Quote -x arguments of compileall in MSI installer.
........
-rw-r--r-- | Misc/NEWS | 2 | ||||
-rw-r--r-- | Tools/msi/msi.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -835,6 +835,8 @@ Extension Modules Build ----- +- Issue #6716: Quote -x arguments of compileall in MSI installer. + - Issue #3920, #7903: Define _BSD_SOURCE on OpenBSD 4.4 through 4.9. - Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index f32bf39..37bcbb6 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -403,7 +403,7 @@ def add_ui(db): ("VerdanaRed9", "Verdana", 9, 255, 0), ]) - compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages|py2_ "[TARGETDIR]Lib"' + compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_" "[TARGETDIR]Lib"' lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"' # See "CustomAction Table" add_data(db, "CustomAction", [ |