From 0ad729daf480bd80b775a29f824a7d997278bd1f Mon Sep 17 00:00:00 2001 From: James Crook Date: Thu, 31 Mar 2022 16:55:51 +0100 Subject: [PATCH] change download source The website (http://pcre.org/) now says to download the files from source forge. The md5sum is still the same. --- dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.sh b/dependencies.sh index b9da1ef..8da55d4 100755 --- a/dependencies.sh +++ b/dependencies.sh @@ -51,7 +51,7 @@ if [ "x${HAVE_PCRE2}" = "xno" ]; then # Prepare pcre2-10.23 source: (mkdir -p "${WORKDIR}/thirdparty/" && \ cd "${WORKDIR}/thirdparty" && \ - wget "ftp://ftp.pcre.org/pub/pcre/pcre2-10.23.zip" + wget "https://master.dl.sourceforge.net/project/pcre/pcre2/10.23/pcre2-10.23.zip" echo "56c07f59ccd052ccdbdedadf24574a63 pcre2-10.23.zip" | md5sum -c || exit 1 unzip "pcre2-10.23.zip" && \ cd "pcre2-10.23" && \