Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: f71d45a84a060a78ef6357897f659c2a60d27dcf authored by Barry Warsaw on 06 October 2009, 13:21:07 UTC
Bumping to 2.6.4rc1
Tip revision: f71d45a
postflight.framework
#!/bin/sh
#
# Recompile the .py files.
#

PYVER="@PYVER@"
FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@"

"${FWK}/bin/python@PYVER@" -Wi -tt \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -x badsyntax -x site-packages \
    "${FWK}/lib/python${PYVER}"

"${FWK}/bin/python@PYVER@" -Wi -tt -O \
    "${FWK}/lib/python${PYVER}/compileall.py" \
    -x badsyntax -x site-packages \
    "${FWK}/lib/python${PYVER}"

chgrp -R admin "${FWK}"
chmod -R g+w "${FWK}"

exit 0
back to top