carl9170: Change download sites
authorJason Self <j@jxself.org>
Sat, 21 Jul 2018 19:19:40 +0000 (12:19 -0700)
committerJason Self <j@jxself.org>
Sat, 21 Jul 2018 19:19:40 +0000 (12:19 -0700)
Use ftp.gnu.org instead of ftpmirror to prevent random build problems
when mirrors are down or having problems.

carl9170fw/toolchain/Makefile

index 1752f1f20fcd679617d198e67dced0cf18fabe92..6b0c87e21775116f5bcb1150f7dd0c40b91609b0 100644 (file)
@@ -1,6 +1,6 @@
 BINUTILS_VER=2.30
 BINUTILS_TAR=binutils-$(BINUTILS_VER).tar.xz
-BINUTILS_URL="http://ftpmirror.gnu.org/gnu/binutils/$(BINUTILS_TAR)"
+BINUTILS_URL="https://ftp.gnu.org/gnu/binutils/$(BINUTILS_TAR)"
 
 NEWLIB_VER=3.0.0
 NEWLIB_TAR=newlib-$(NEWLIB_VER).tar.gz
@@ -8,19 +8,19 @@ NEWLIB_URL="ftp://sourceware.org/pub/newlib/$(NEWLIB_TAR)"
 
 GCC_VER=8.1.0
 GCC_TAR=gcc-$(GCC_VER).tar.xz
-GCC_URL="http://ftpmirror.gnu.org/gnu/gcc/gcc-$(GCC_VER)/$(GCC_TAR)"
+GCC_URL="https://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VER)/$(GCC_TAR)"
 
 MPFR_VER=4.0.1
 MPFR_TAR=mpfr-$(MPFR_VER).tar.xz
-MPFR_URL="http://ftpmirror.gnu.org/gnu/mpfr/$(MPFR_TAR)"
+MPFR_URL="https://ftp.gnu.org/gnu/mpfr/$(MPFR_TAR)"
 
 GMP_VER=6.1.2
 GMP_TAR=gmp-$(GMP_VER).tar.xz
-GMP_URL="http://ftpmirror.gnu.org/gnu/gmp/$(GMP_TAR)"
+GMP_URL="https://ftp.gnu.org/gnu/gmp/$(GMP_TAR)"
 
 MPC_VER=1.1.0
 MPC_TAR=mpc-$(MPC_VER).tar.gz
-MPC_URL="http://ftpmirror.gnu.org/gnu/mpc/$(MPC_TAR)"
+MPC_URL="https://ftp.gnu.org/gnu/mpc/$(MPC_TAR)"
 
 JOBS?=$(shell grep -c ^processor /proc/cpuinfo)