From: nbd Date: Sat, 25 Feb 2012 20:44:02 +0000 (+0000) Subject: scripts/download.pl: fix sourceforge url X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/dde0871987c4129a6e709f47e350da5c3eb74a9c scripts/download.pl: fix sourceforge url git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30726 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/scripts/download.pl b/scripts/download.pl index 042b1cce7..d79950f9b 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -123,7 +123,7 @@ foreach my $mirror (@ARGV) { if ($mirror =~ /^\@SF\/(.+)$/) { # give sourceforge a few more tries, because it redirects to different mirrors for (1 .. 5) { - push @mirrors, "http://downloads.sourceforge.net/$1"; + push @mirrors, "http://downloads.sourceforge.net/project/$1"; } } elsif ($mirror =~ /^\@GNU\/(.+)$/) { push @mirrors, "ftp://ftp.gnu.org/gnu/$1";