Commit df419064 authored by mattip's avatar mattip
Browse files

invert wrong logic, skip cfitsio on macOS

parent de94da5e
...@@ -432,10 +432,10 @@ function install_pypy { ...@@ -432,10 +432,10 @@ function install_pypy {
"ppc64le") suffix="ppc64le";; "ppc64le") suffix="ppc64le";;
"s30x") suffix="s390x";; "s30x") suffix="s390x";;
"aarch64") suffix="aarch64";; "aarch64") suffix="aarch64";;
*) if [ -z "$IS_OSX" ]; then *) if [ -n "$IS_OSX" ]; then
suffix = "osx64"; suffix="osx64";
else else
echo unknown platform $PLAT; exit 1 echo unknown platform "$PLAT"; exit 1
fi;; fi;;
esac esac
......
...@@ -50,7 +50,10 @@ if [ -z "$IS_OSX" ]; then ...@@ -50,7 +50,10 @@ if [ -z "$IS_OSX" ]; then
suppress build_lzo suppress build_lzo
fi fi
suppress build_ragel suppress build_ragel
suppress build_cfitsio if [ -z "$IS_OSX" ]; then
# already installed in the macOS image, so `brew install cfitsio` fails
suppress build_cfitsio
fi
suppress build_new_zlib suppress build_new_zlib
suppress build_hdf5 suppress build_hdf5
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment