diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-02-22 08:53:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-22 08:53:06 -0500 |
commit | d4ccb57a335dfda4b3583107767a081691352b2f (patch) | |
tree | 43dd1892560bcc467c5eaf1373390cefe4707acd /hstcal/build.sh | |
parent | ebe4788bd2ee01f8b991f02d1665db3d87cc383d (diff) | |
parent | e027b0e371ddedc4377b43b425d2f67282ff45b7 (diff) | |
download | astroconda-contrib-d4ccb57a335dfda4b3583107767a081691352b2f.tar.gz |
Merge branch 'master' into patch-3
Diffstat (limited to 'hstcal/build.sh')
-rw-r--r-- | hstcal/build.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hstcal/build.sh b/hstcal/build.sh index a10e61f..4845293 100644 --- a/hstcal/build.sh +++ b/hstcal/build.sh @@ -1,7 +1,10 @@ if [[ `uname` == Darwin ]]; then export CC=`which gcc` + export DARWIN_FLAGS='-m64' + export CFLAGS="$CFLAGS $DARWIN_FLAGS" + export LDFLAGS="$LDFLAGS $DARWIN_FLAGS" fi -./waf configure --destdir=$PREFIX +./waf configure --prefix=$PREFIX ./waf build ./waf install |