diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-02-12 01:25:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 01:25:07 -0500 |
commit | 12df992ee0829397f21bd4fe554e06fb7d92e2c5 (patch) | |
tree | b7f4a814f2882b871f6b91248244b438ec77b6db /hstcal | |
parent | e58a4bf7e834c2f4394f2d3ba25e5c519655bbb0 (diff) | |
download | astroconda-contrib-12df992ee0829397f21bd4fe554e06fb7d92e2c5.tar.gz |
hstcal: fix osx (#700)
Diffstat (limited to 'hstcal')
-rw-r--r-- | hstcal/bld.bat | 3 | ||||
-rw-r--r-- | hstcal/build.sh | 2 | ||||
-rw-r--r-- | hstcal/meta.yaml | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/hstcal/bld.bat b/hstcal/bld.bat index 78e717d..5769edf 100644 --- a/hstcal/bld.bat +++ b/hstcal/bld.bat @@ -1,3 +1,2 @@ - echo Not yet. -exit 1
\ No newline at end of file +exit 1 diff --git a/hstcal/build.sh b/hstcal/build.sh index 7b2b0b1..2c749bb 100644 --- a/hstcal/build.sh +++ b/hstcal/build.sh @@ -2,7 +2,7 @@ export FCFLAGS="$FCFLAGS -fPIC" if [[ `uname` == Darwin ]]; then - export FC=/sw/bin/gfortran + export FC=/usr/local/bin/gfortran if [[ `uname -m` == x86_64 ]]; then export CFLAGS="$CFLAGS -m64" export LDFLAGS="$LDFLAGS -m64" diff --git a/hstcal/meta.yaml b/hstcal/meta.yaml index 14c9c6b..4747334 100644 --- a/hstcal/meta.yaml +++ b/hstcal/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'hstcal' %} {% set version = '2.5.0' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://github.com/spacetelescope/{{ name }} |