Skip to content
Snippets Groups Projects
Commit db33fad9 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing installation of zlib

parent 83763f20
No related branches found
No related tags found
No related merge requests found
......@@ -12,14 +12,14 @@ if [ -d "$1/HDF5" ]; then
fi
if [ ! -d "$1/ZLIB" -a x"$platform" != x"cygwin" ]; then
rm zlib1211.tar.gz
rm zlib-1.2.11.tar.gz
rm -rf zlib-1.2.11
wget https://zlib.net/zlib-1.2.11.tar.gz
if [ $? -ne 0 ]; then
echo -e "\033[91;5;1m FAILED! Installation requires an Internet connection \033[0m"
exit 1
fi
tar -xf zlib1211.tar.gz
tar -xf zlib-1.2.11.tar.gz
cd zlib-1.2.11
CC=mpicc ./configure --prefix=$1/ZLIB
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment