cpython/Mac/BuildScript/scripts/postflight.framework

23 lines
484 B
Plaintext
Raw Normal View History

2006-06-07 15:58:42 -03:00
#!/bin/sh
#
# Recompile the .py files.
#
PYVER="@PYVER@"
FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@"
2006-06-07 15:58:42 -03:00
"${FWK}/bin/python@PYVER@" -Wi -tt \
2006-06-07 15:58:42 -03:00
"${FWK}/lib/python${PYVER}/compileall.py" \
-x badsyntax -x site-packages \
"${FWK}/lib/python${PYVER}"
"${FWK}/bin/python@PYVER@" -Wi -tt -O \
2006-06-07 15:58:42 -03:00
"${FWK}/lib/python${PYVER}/compileall.py" \
-x badsyntax -x site-packages \
"${FWK}/lib/python${PYVER}"
chgrp -R admin "${FWK}"
2006-06-07 15:58:42 -03:00
chmod -R g+w "${FWK}"
exit 0