From 0b290ce1f6313e65f714ccf82a2c955da5bf0a84 Mon Sep 17 00:00:00 2001 From: nreilly Date: Sun, 16 Jul 2017 14:29:27 +0800 Subject: [PATCH] New download location for PCRE Changing to a new mirror that has updated packages. --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 2dcb814..03c0de9 100755 --- a/bin/compile +++ b/bin/compile @@ -54,7 +54,7 @@ fi if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then echo "-----> Download and unzip pcre" - curl -sSL "http://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" + curl -sSL "https://ftp.pcre.org/pub/pcre/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}" fi