diff options
author | Ned Deily <nad@acm.org> | 2015-07-03 23:53:51 -0700 |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2015-07-03 23:53:51 -0700 |
commit | 1b7f6fedb3472b709928e8763d0b86f99fb5d7a9 (patch) | |
tree | 638c978c91222970e013c27df5c93e4aec2df919 /Mac/BuildScript/scripts/postflight.ensurepip | |
parent | 704dde196c9cfe327bd6c40c576158d5c09545cd (diff) | |
download | cpython-git-1b7f6fedb3472b709928e8763d0b86f99fb5d7a9.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.ensurepip')
-rwxr-xr-x | Mac/BuildScript/scripts/postflight.ensurepip | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Mac/BuildScript/scripts/postflight.ensurepip b/Mac/BuildScript/scripts/postflight.ensurepip index bf893d1da6..3074fa36fc 100755 --- a/Mac/BuildScript/scripts/postflight.ensurepip +++ b/Mac/BuildScript/scripts/postflight.ensurepip @@ -10,15 +10,15 @@ RELFWKBIN="../../..${FWK}/bin" umask 022 -"${FWK}/bin/python${PYVER}" -m ensurepip --upgrade +"${FWK}/bin/python${PYVER}" -E -s -m ensurepip --upgrade -"${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" |