Escape to build openssl twice

This commit is contained in:
Alexey Golubev
2018-03-01 17:25:47 +03:00
parent c53b93b24c
commit 16728b5195
2 changed files with 8 additions and 3 deletions

View File

@ -29,6 +29,9 @@ fi
echo "$platform$arch"
perl ./Configure $platform$arch
./config
if [ ! -f Makefile ]; then
perl ./Configure $platform$arch
./config
fi
make

View File

@ -5,4 +5,6 @@ SCRIPTPATH=$(dirname "$SCRIPT")
cd "$SCRIPTPATH"
git clone https://github.com/openssl/openssl.git
if [ ! -d openssl ]; then
git clone https://github.com/openssl/openssl.git
fi