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. ........
This commit is contained in:
parent
d419fce483
commit
974dd58372
|
@ -43,6 +43,8 @@ Library
|
||||||
Build
|
Build
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
- Issue #6716: Quote -x arguments of compileall in MSI installer.
|
||||||
|
|
||||||
- Issue #1628484: The Makefile doesn't ignore the CFLAGS environment
|
- Issue #1628484: The Makefile doesn't ignore the CFLAGS environment
|
||||||
variable anymore. It also forwards the LDFLAGS settings to the linker
|
variable anymore. It also forwards the LDFLAGS settings to the linker
|
||||||
when building a shared library.
|
when building a shared library.
|
||||||
|
|
|
@ -398,7 +398,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", [
|
||||||
|
|
Loading…
Reference in New Issue