From 1bbdce7a6d03b0543c33a634a0ff56c483bec86e Mon Sep 17 00:00:00 2001 From: ShannonDing Date: Thu, 2 Apr 2020 11:21:17 +0800 Subject: [PATCH] Use the archive download URL for OpenSSL to avoid fail to download source. --- 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