diff options
| -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 | 
