Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09c86af

Browse files
committed
Merged revisions 78976 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent a6d9abf commit 09c86af

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,8 @@ Extension Modules
835835
Build
836836
-----
837837

838+
- Issue #6716: Quote -x arguments of compileall in MSI installer.
839+
838840
- Issue #3920, #7903: Define _BSD_SOURCE on OpenBSD 4.4 through 4.9.
839841

840842
- Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the

Tools/msi/msi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def add_ui(db):
403403
("VerdanaRed9", "Verdana", 9, 255, 0),
404404
])
405405

406-
compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages|py2_ "[TARGETDIR]Lib"'
406+
compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_" "[TARGETDIR]Lib"'
407407
lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"'
408408
# See "CustomAction Table"
409409
add_data(db, "CustomAction", [

0 commit comments

Comments
 (0)