From 1b7f6fedb3472b709928e8763d0b86f99fb5d7a9 Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Fri, 3 Jul 2015 23:53:51 -0700 Subject: 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 --- Mac/BuildScript/scripts/postflight.framework | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Mac/BuildScript/scripts/postflight.framework') diff --git a/Mac/BuildScript/scripts/postflight.framework b/Mac/BuildScript/scripts/postflight.framework index eb082979be4..0f2e52c4ca1 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" -- cgit v1.2.3