diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-08-01 12:06:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-01 12:06:49 -0400 |
commit | 5c1b2233262639b25f719e0ea99d120046ff64f6 (patch) | |
tree | 9e3f7abf68a0f0413fbcdb38005f9b0603cef11e /cfitsio/build.sh | |
parent | 5047c136746d7232efe97a5b86eb43ac11a24b09 (diff) | |
download | astroconda-dev-5c1b2233262639b25f719e0ea99d120046ff64f6.tar.gz |
Help prevent linkage against conda libcurl (#144)
Diffstat (limited to 'cfitsio/build.sh')
-rw-r--r-- | cfitsio/build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cfitsio/build.sh b/cfitsio/build.sh index 5368e6b..288a62e 100644 --- a/cfitsio/build.sh +++ b/cfitsio/build.sh @@ -1,8 +1,8 @@ case "$(uname)" in Darwin) export CFLAGS="$CFLAGS -D_POSIX_C_SOURCE=200112L" - ;; + ;; esac -./configure --prefix=$PREFIX --disable-static --enable-reentrant -make -j $CPU_COUNT shared +./configure --prefix=$PREFIX --enable-reentrant +make shared make install |