mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #6716: Quote -x arguments of compileall in MSI installer.
This commit is contained in:
parent
54cc539a2b
commit
24e4e168a0
2 changed files with 3 additions and 1 deletions
|
@ -67,6 +67,8 @@ Tools/Demos
|
|||
Build
|
||||
-----
|
||||
|
||||
- Issue #6716: Quote -x arguments of compileall in MSI installer.
|
||||
|
||||
- Issue #7705: Fix linking on FreeBSD.
|
||||
|
||||
|
||||
|
|
|
@ -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", [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue