summaryrefslogtreecommitdiffstats
path: root/Mac/BuildScript/scripts/postflight.framework
blob: 4c8f6d3aa3e049589bd9a0cdf22a191b514d5a02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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