diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-12 20:52:24 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-12 20:52:24 -0400 |
commit | ca00ca42c69247cc25e88a6687bfb7ef98cfe420 (patch) | |
tree | 7a6975ac93b1a6e2e504c678afe5814d6c657c54 | |
parent | 22c7717c4bd9ed46c21050ba83c1105a3493626e (diff) |
Use HTTPS for ftp.gnu.org URLs
-rwxr-xr-x | mingw-w64-build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mingw-w64-build b/mingw-w64-build index 74d2c1b..c15307e 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -91,9 +91,9 @@ download_sources() svn co svn://gcc.gnu.org/svn/gcc/branches/gcc-7-branch gcc-$v_gcc || error_exit local urls=( - "http://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz" - "http://ftp.gnu.org/gnu/mpfr/mpfr-$v_mpfr.tar.xz" - "http://ftp.gnu.org/gnu/mpc/mpc-$v_mpc.tar.gz" + "https://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz" + "https://ftp.gnu.org/gnu/mpfr/mpfr-$v_mpfr.tar.xz" + "https://ftp.gnu.org/gnu/mpc/mpc-$v_mpc.tar.gz" "http://isl.gforge.inria.fr/isl-$v_isl.tar.xz" ) |