Skip to content

Commit

Permalink
Squashed 'tools/' changes from b220f44..3e8a2cb
Browse files Browse the repository at this point in the history
3e8a2cb change GNU package download path to http://ftpmirror.gnu.org to fix availability issues

git-subtree-dir: tools
git-subtree-split: 3e8a2cb0557f47d81085848dcde383a69b995295
  • Loading branch information
kozyilmaz committed Aug 15, 2018
1 parent 4a5d609 commit eda362b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion autoconf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
AUTOCONF_VERSION="2.69"

autoconf_clone:
if [ ! -f "autoconf-$(AUTOCONF_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/autoconf/autoconf-$(AUTOCONF_VERSION).tar.gz; fi
if [ ! -f "autoconf-$(AUTOCONF_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-$(AUTOCONF_VERSION).tar.gz; fi
if [ ! -d "autoconf-$(AUTOCONF_VERSION)" ]; then tar xzf autoconf-$(AUTOCONF_VERSION).tar.gz; fi

autoconf_config:
Expand Down
2 changes: 1 addition & 1 deletion automake/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
AUTOMAKE_VERSION="1.16.1"

automake_clone:
if [ ! -f "automake-$(AUTOMAKE_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/automake/automake-$(AUTOMAKE_VERSION).tar.gz; fi;
if [ ! -f "automake-$(AUTOMAKE_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/automake/automake-$(AUTOMAKE_VERSION).tar.gz; fi;
if [ ! -d "automake-$(AUTOMAKE_VERSION)" ]; then tar xzf automake-$(AUTOMAKE_VERSION).tar.gz; fi

automake_config:
Expand Down
2 changes: 1 addition & 1 deletion coreutils/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
COREUTILS_VERSION="8.30"

coreutils_clone:
if [ ! -f "coreutils-$(COREUTILS_VERSION).tar.xz" ]; then curl -OL https://ftp.gnu.org/gnu/coreutils/coreutils-$(COREUTILS_VERSION).tar.xz; fi;
if [ ! -f "coreutils-$(COREUTILS_VERSION).tar.xz" ]; then curl -OL http://ftpmirror.gnu.org/coreutils/coreutils-$(COREUTILS_VERSION).tar.xz; fi;
if [ ! -d "coreutils-$(COREUTILS_VERSION)" ]; then tar xzf coreutils-$(COREUTILS_VERSION).tar.xz; fi

coreutils_config:
Expand Down
2 changes: 1 addition & 1 deletion gmp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
GMP_VERSION="6.1.2"

gmp_clone:
if [ ! -f "gmp-$(GMP_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/gmp/gmp-$(GMP_VERSION).tar.bz2; fi;
if [ ! -f "gmp-$(GMP_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/gmp/gmp-$(GMP_VERSION).tar.bz2; fi;
if [ ! -d "gmp-$(GMP_VERSION)" ]; then tar xzf gmp-$(GMP_VERSION).tar.bz2; fi

gmp_config:
Expand Down
2 changes: 1 addition & 1 deletion gnugcc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
GCC_VERSION="8.2.0"

gnugcc_clone:
if [ ! -f "gcc-$(GCC_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/gcc/gcc-$(GCC_VERSION)/gcc-$(GCC_VERSION).tar.gz; fi;
if [ ! -f "gcc-$(GCC_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/gcc/gcc-$(GCC_VERSION)/gcc-$(GCC_VERSION).tar.gz; fi;
if [ ! -d "gcc-$(GCC_VERSION)" ]; then tar xzf gcc-$(GCC_VERSION).tar.gz; fi

gnugcc_config:
Expand Down
2 changes: 1 addition & 1 deletion libtool/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
LIBTOOL_VERSION="2.4.6"

libtool_clone:
if [ ! -f "libtool-$(LIBTOOL_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/libtool/libtool-$(LIBTOOL_VERSION).tar.gz; fi;
if [ ! -f "libtool-$(LIBTOOL_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/libtool/libtool-$(LIBTOOL_VERSION).tar.gz; fi;
if [ ! -d "libtool-$(LIBTOOL_VERSION)" ]; then tar xzf libtool-$(LIBTOOL_VERSION).tar.gz; fi

libtool_config:
Expand Down
2 changes: 1 addition & 1 deletion m4/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
M4_VERSION="1.4.18"

m4_clone:
if [ ! -f "m4-$(M4_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/m4/m4-$(M4_VERSION).tar.gz; fi
if [ ! -f "m4-$(M4_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/m4/m4-$(M4_VERSION).tar.gz; fi
if [ ! -d "m4-$(M4_VERSION)" ]; then tar xzf m4-$(M4_VERSION).tar.gz; fi

m4_config:
Expand Down
2 changes: 1 addition & 1 deletion mpc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
MPC_VERSION="1.1.0"

mpc_clone:
if [ ! -f "mpc-$(MPC_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/mpc/mpc-$(MPC_VERSION).tar.gz; fi;
if [ ! -f "mpc-$(MPC_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/mpc/mpc-$(MPC_VERSION).tar.gz; fi;
if [ ! -d "mpc-$(MPC_VERSION)" ]; then tar xzf mpc-$(MPC_VERSION).tar.gz; fi

mpc_config:
Expand Down
2 changes: 1 addition & 1 deletion mpfr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include ../Makefile.build
MPFR_VERSION="4.0.1"

mpfr_clone:
if [ ! -f "mpfr-$(MPFR_VERSION).tar.gz" ]; then curl -OL http://ftp.gnu.org/gnu/mpfr/mpfr-$(MPFR_VERSION).tar.bz2; fi;
if [ ! -f "mpfr-$(MPFR_VERSION).tar.gz" ]; then curl -OL http://ftpmirror.gnu.org/mpfr/mpfr-$(MPFR_VERSION).tar.bz2; fi;
if [ ! -d "mpfr-$(MPFR_VERSION)" ]; then tar xzf mpfr-$(MPFR_VERSION).tar.bz2; fi

mpfr_config:
Expand Down

0 comments on commit eda362b

Please sign in to comment.