Commit 24e4e168 authored by Martin v. Löwis's avatar Martin v. Löwis

Issue #6716: Quote -x arguments of compileall in MSI installer.

parent 54cc539a
...@@ -67,6 +67,8 @@ Tools/Demos ...@@ -67,6 +67,8 @@ Tools/Demos
Build Build
----- -----
- Issue #6716: Quote -x arguments of compileall in MSI installer.
- Issue #7705: Fix linking on FreeBSD. - Issue #7705: Fix linking on FreeBSD.
......
...@@ -402,7 +402,7 @@ def add_ui(db): ...@@ -402,7 +402,7 @@ def add_ui(db):
("VerdanaRed9", "Verdana", 9, 255, 0), ("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()"' lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"'
# See "CustomAction Table" # See "CustomAction Table"
add_data(db, "CustomAction", [ add_data(db, "CustomAction", [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment