mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Properly quote compileall and Lib paths in case TARGETDIR has a space.
This commit is contained in:
parent
88ef637777
commit
4cbd05c322
2 changed files with 4 additions and 1 deletions
|
|
@ -89,6 +89,9 @@ Extension Modules
|
|||
Build
|
||||
-----
|
||||
|
||||
- The MSI compileall step was fixed to also support a TARGETDIR
|
||||
with spaces in it.
|
||||
|
||||
- Bug #1517388: sqlite3.dll is now installed on Windows independent
|
||||
of Tcl/Tk.
|
||||
|
||||
|
|
|
|||
|
|
@ -367,7 +367,7 @@ def add_ui(db):
|
|||
("VerdanaRed9", "Verdana", 9, 255, 0),
|
||||
])
|
||||
|
||||
compileargs = r"-Wi [TARGETDIR]Lib\compileall.py -f -x bad_coding|badsyntax|site-packages [TARGETDIR]Lib"
|
||||
compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages "[TARGETDIR]Lib"'
|
||||
# See "CustomAction Table"
|
||||
add_data(db, "CustomAction", [
|
||||
# msidbCustomActionTypeFirstSequence + msidbCustomActionTypeTextData + msidbCustomActionTypeProperty
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue