From 6579eb637f81bca29f59f1e8645897a8c12a0871 Mon Sep 17 00:00:00 2001 From: dinglei Date: Thu, 2 Apr 2020 13:56:30 +0800 Subject: [PATCH] [ISSUE #296] Use the archive download URL for OpenSSL to avoid fail to download source. (#295) --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 4a76f9e31..8a424bb76 100755 --- a/build.sh +++ b/build.sh @@ -212,7 +212,7 @@ BuildOpenSSL() { if [ -e ${fname_openssl} ]; then echo "${fname_openssl} is exist" else - wget https://www.openssl.org/source/${fname_openssl_down} -O ${fname_openssl_down} + wget https://www.openssl.org/source/old/1.1.1/${fname_openssl_down} -O ${fname_openssl_down} fi tar -zxvf ${fname_openssl} &> unzipopenssl.txt if [ $? -ne 0 ]; then