Skip to content

Commit 7f568c1

Browse files
committed
Use gnu automirror for download of gnu packages.
1 parent f20ea03 commit 7f568c1

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

pkgs/autoconf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cleanup=""
66

77
version=2.71
88
pfile=autoconf-${version}.tar.gz
9-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftp.gnu.org/gnu/autoconf/${pfile} ${pfile})
9+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/autoconf/${pfile} ${pfile})
1010

1111
if [ "x${src}" = "x" ]; then
1212
echo "Failed to fetch ${pkg}" >&2

pkgs/automake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cleanup=""
66

77
version=1.16.5
88
pfile=automake-${version}.tar.gz
9-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftp.gnu.org/gnu/automake/${pfile} ${pfile})
9+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/automake/${pfile} ${pfile})
1010

1111
if [ "x${src}" = "x" ]; then
1212
echo "Failed to fetch ${pkg}" >&2

pkgs/gmp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cleanup=""
77
version=6.2.1
88
pdir=gmp-${version}
99
pfile=${pdir}.tar.xz
10-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" https://ftp.gnu.org/gnu/gmp/${pfile} ${pfile})
10+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/gmp/${pfile} ${pfile})
1111

1212
if [ "x${src}" = "x" ]; then
1313
echo "Failed to fetch ${pkg}" >&2

pkgs/libtool.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cleanup=""
66

77
version=2.4.6
88
pfile=libtool-${version}.tar.gz
9-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" https://ftp.gnu.org/gnu/libtool/${pfile} ${pfile})
9+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/libtool/${pfile} ${pfile})
1010

1111
if [ "x${src}" = "x" ]; then
1212
echo "Failed to fetch ${pkg}" >&2

pkgs/m4.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cleanup=""
66

77
version=1.4.19
88
pfile=m4-${version}.tar.bz2
9-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" https://ftp.gnu.org/gnu/m4/${pfile} ${pfile})
9+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/m4/${pfile} ${pfile})
1010

1111
if [ "x${src}" = "x" ]; then
1212
echo "Failed to fetch ${pkg}" >&2

pkgs/mpfr.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ cleanup=""
66

77
version=4.1.0
88
pdir=mpfr-${version}
9-
pfile=${pdir}.tar.xz
10-
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" https://www.mpfr.org/mpfr-current/${pfile} ${pfile})
9+
pfile=${pdir}.tar.gz
10+
src=$(eval "@TOP_DIR@/tools/fetch_check.sh" http://ftpmirror.gnu.org/mpfr/${pfile} ${pfile})
1111

1212
if [ "x${src}" = "x" ]; then
1313
echo "Failed to fetch ${pkg}" >&2
@@ -24,7 +24,7 @@ fi
2424
echo "Building ${pkg}..." >&2
2525

2626
rm -rf ${pdir}
27-
tar xf ${src} \
27+
tar xzf ${src} \
2828
&& cd ${pdir} \
2929
&& cleanup="${cleanup} $(pwd)" \
3030
&& CC="@CC@" CFLAGS="@CFLAGS@" \

0 commit comments

Comments
 (0)