summaryrefslogtreecommitdiff
path: root/Mac/BuildScript/scripts/postflight.framework
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2015-07-03 23:53:51 -0700
committerNed Deily <nad@acm.org>2015-07-03 23:53:51 -0700
commite9426adc5042d1f1a19d13c46dc327bb9a654f31 (patch)
tree4482f6382921b3ffdb88cbf25b6c86c34f29a5bc /Mac/BuildScript/scripts/postflight.framework
parent7ddf7fab0debc1717e46f97b5a4270f4559d4359 (diff)
downloadcpython-e9426adc5042d1f1a19d13c46dc327bb9a654f31.tar.gz
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-xMac/BuildScript/scripts/postflight.framework16
1 files changed, 8 insertions, 8 deletions
diff --git a/Mac/BuildScript/scripts/postflight.framework b/Mac/BuildScript/scripts/postflight.framework
index eb082979be..0f2e52c4ca 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"