diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-25 20:44:02 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-02-25 20:44:02 +0000 |
commit | dde0871987c4129a6e709f47e350da5c3eb74a9c (patch) | |
tree | 707d2b235b14a4a189b0a0200db0aba7a31d603a | |
parent | 1c824716f1d15c6fc95323f7687ed387ba2ec157 (diff) |
scripts/download.pl: fix sourceforge url
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30726 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/download.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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"; |