diff options
author | Ned Deily <nad@acm.org> | 2015-07-04 06:53:51 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-07-04 06:53:51 (GMT) |
commit | 1b7f6fedb3472b709928e8763d0b86f99fb5d7a9 (patch) | |
tree | 638c978c91222970e013c27df5c93e4aec2df919 /Mac/BuildScript/scripts/postflight.framework | |
parent | 704dde196c9cfe327bd6c40c576158d5c09545cd (diff) | |
download | cpython-1b7f6fedb3472b709928e8763d0b86f99fb5d7a9.zip cpython-1b7f6fedb3472b709928e8763d0b86f99fb5d7a9.tar.gz cpython-1b7f6fedb3472b709928e8763d0b86f99fb5d7a9.tar.bz2 |
Updates to the OS X installer for 3.5.0b3:
- update installer ReadMe file
- suppress installer per-file byte-compilation messages to system log
- speed up installer byte-compilation
- isolate ensurepip install from user site-packages
Diffstat (limited to 'Mac/BuildScript/scripts/postflight.framework')
-rwxr-xr-x | Mac/BuildScript/scripts/postflight.framework | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Mac/BuildScript/scripts/postflight.framework b/Mac/BuildScript/scripts/postflight.framework index eb08297..0f2e52c 100755 --- a/Mac/BuildScript/scripts/postflight.framework +++ b/Mac/BuildScript/scripts/postflight.framework @@ -6,23 +6,23 @@ PYVER="@PYVER@" FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@" -"${FWK}/bin/python@PYVER@" -Wi \ - "${FWK}/lib/python${PYVER}/compileall.py" \ +"${FWK}/bin/python@PYVER@" -E -s -Wi \ + "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \ -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \ "${FWK}/lib/python${PYVER}" -"${FWK}/bin/python@PYVER@" -Wi -O \ - "${FWK}/lib/python${PYVER}/compileall.py" \ +"${FWK}/bin/python@PYVER@" -E -s -Wi -O \ + "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \ -f -x 'bad_coding|badsyntax|site-packages|lib2to3/tests/data' \ "${FWK}/lib/python${PYVER}" -"${FWK}/bin/python@PYVER@" -Wi \ - "${FWK}/lib/python${PYVER}/compileall.py" \ +"${FWK}/bin/python@PYVER@" -E -s -Wi \ + "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \ -f -x badsyntax \ "${FWK}/lib/python${PYVER}/site-packages" -"${FWK}/bin/python@PYVER@" -Wi -O \ - "${FWK}/lib/python${PYVER}/compileall.py" \ +"${FWK}/bin/python@PYVER@" -E -s -Wi -O \ + "${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \ -f -x badsyntax \ "${FWK}/lib/python${PYVER}/site-packages" |