diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-12-07 11:10:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 11:10:37 -0500 |
commit | 310280afd385985bd33e0f4b968f7030ef34b338 (patch) | |
tree | e9ec84b2e665a82220ef741af0981a479a58bc6b /hstcal | |
parent | 74b6754b17de4492d44dfb55ef26c8a05714913b (diff) | |
download | astroconda-contrib-310280afd385985bd33e0f4b968f7030ef34b338.tar.gz |
Force gcc usage under OS X (#122)
Diffstat (limited to 'hstcal')
-rw-r--r-- | hstcal/build.sh | 10 | ||||
-rw-r--r-- | hstcal/meta.yaml | 2 |
2 files changed, 7 insertions, 5 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 diff --git a/hstcal/meta.yaml b/hstcal/meta.yaml index d751300..41aa86c 100644 --- a/hstcal/meta.yaml +++ b/hstcal/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'hstcal' %} {% set version = '1.1.1' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/hstcal |