summaryrefslogtreecommitdiff
path: root/pyraf/build.sh
blob: 829503019cfd0ef127aad4167a00fc0ab35dc3af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
if [[ `uname -s` == "Darwin" ]]; then
    export CFLAGS="-I/opt/X11/include"
    export LDFLAGS="-L/opt/X11/lib"
fi

if [[ $PY3K > 0 ]]; then
set +e
    2to3 -w .
fi

python setup.py install || exit 1