diff options
Diffstat (limited to 'hstcal/build.sh')
-rw-r--r-- | hstcal/build.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hstcal/build.sh b/hstcal/build.sh index 2507e5d..a10e61f 100644 --- a/hstcal/build.sh +++ b/hstcal/build.sh @@ -1,5 +1,7 @@ +if [[ `uname` == Darwin ]]; then + export CC=`which gcc` +fi - -/usr/bin/python ./waf configure --destdir=$PREFIX -/usr/bin/python ./waf build -/usr/bin/python ./waf install
\ No newline at end of file +./waf configure --destdir=$PREFIX +./waf build +./waf install |