From: nbd Date: Tue, 9 Jul 2013 12:52:12 +0000 (+0000) Subject: scripts/download.pl: use HTTP instead of FTP for the default GNU site X-Git-Tag: fast2504n-3.10.28-merged~2122 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=f4d95110f1ba70775fe4c4400e14a1c92687a419;p=openwrt.git scripts/download.pl: use HTTP instead of FTP for the default GNU site Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37213 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/scripts/download.pl b/scripts/download.pl index f2b064b346..2ed852a231 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -152,7 +152,7 @@ foreach my $mirror (@ARGV) { push @mirrors, "http://downloads.sourceforge.net/$1"; } } elsif ($mirror =~ /^\@GNU\/(.+)$/) { - push @mirrors, "ftp://ftp.gnu.org/gnu/$1"; + push @mirrors, "http://ftp.gnu.org/pub/gnu/$1"; push @mirrors, "http://ftpmirror.gnu.org/$1"; push @mirrors, "ftp://ftp.belnet.be/mirror/ftp.gnu.org/gnu/$1"; push @mirrors, "ftp://ftp.mirror.nl/pub/mirror/gnu/$1";