From: Felix Fietkau Date: Fri, 13 Dec 2013 16:43:07 +0000 (+0000) Subject: scripts/download.pl: prefer the GNU mirror redirect over the primary site (#14603) X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=fc3c757f2e951c70e8d467bd841b020249ac0562 scripts/download.pl: prefer the GNU mirror redirect over the primary site (#14603) Signed-off-by: Felix Fietkau SVN-Revision: 39045 --- diff --git a/scripts/download.pl b/scripts/download.pl index f17500f3c1..d6a55b634c 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -152,8 +152,8 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://downloads.sourceforge.net/$1"; } } elsif ($mirror =~ /^\@GNU\/(.+)$/) { - push @mirrors, "http://ftp.gnu.org/pub/gnu/$1"; push @mirrors, "http://ftpmirror.gnu.org/$1"; + push @mirrors, "http://ftp.gnu.org/pub/gnu/$1"; push @mirrors, "ftp://ftp.belnet.be/mirror/ftp.gnu.org/gnu/$1"; push @mirrors, "ftp://ftp.mirror.nl/pub/mirror/gnu/$1"; push @mirrors, "http://mirror.switch.ch/ftp/mirror/gnu/$1";