diff options
| author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-03-05 15:20:21 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-05 15:20:21 -0500 | 
| commit | 2eb5a585067a17e4acd2f9c6c87e2fea02600671 (patch) | |
| tree | e9c61213f98f0352bd8a8d70b94e8bac101fe10f | |
| parent | 8cb6a0af7848ddb384e6379c6ac30e75e3295234 (diff) | |
| download | astroconda-contrib-2eb5a585067a17e4acd2f9c6c87e2fea02600671.tar.gz | |
Explicitly define gfortran location (#624)
It's not on the PATH within the Jenkins job.
| -rw-r--r-- | hstcal/build.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/hstcal/build.sh b/hstcal/build.sh index 37e7be2..d9aa360 100644 --- a/hstcal/build.sh +++ b/hstcal/build.sh @@ -2,7 +2,7 @@  export FCFLAGS="$FCFLAGS -fPIC"  if [[ `uname` == Darwin ]]; then -    #export GFORTRAN=$(which gfortran) +    export GFORTRAN=/sw/bin/gfortran      if [[ `uname -m` == x86_64 ]]; then          export CFLAGS="$CFLAGS -m64"          export LDFLAGS="$LDFLAGS -m64"  | 
