diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-03-15 13:00:17 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-03-15 13:00:17 (GMT) |
commit | 24e4e168a0d4499c888b6180efb6758c5cde1bda (patch) | |
tree | fe67ffb1e1f44d2711892cdba8929ea2a5c7bda5 /Tools | |
parent | 54cc539a2b06d4fc22358862dc72f3c9ede7b2d4 (diff) | |
download | cpython-24e4e168a0d4499c888b6180efb6758c5cde1bda.zip cpython-24e4e168a0d4499c888b6180efb6758c5cde1bda.tar.gz cpython-24e4e168a0d4499c888b6180efb6758c5cde1bda.tar.bz2 |
Issue #6716: Quote -x arguments of compileall in MSI installer.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 84215a1..63b2399 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -402,7 +402,7 @@ def add_ui(db): ("VerdanaRed9", "Verdana", 9, 255, 0), ]) - compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages|py3_ "[TARGETDIR]Lib"' + compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py3_" "[TARGETDIR]Lib"' lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"' # See "CustomAction Table" add_data(db, "CustomAction", [ |