aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-02-25 20:44:02 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-02-25 20:44:02 +0000
commitd2d9abec243d773015e24fe6941732ff2df1cb1a (patch)
tree707d2b235b14a4a189b0a0200db0aba7a31d603a /scripts
parentd83495740c565c066893d7e44c378e055aec0d0b (diff)
downloadupstream-d2d9abec243d773015e24fe6941732ff2df1cb1a.tar.gz
upstream-d2d9abec243d773015e24fe6941732ff2df1cb1a.tar.bz2
upstream-d2d9abec243d773015e24fe6941732ff2df1cb1a.zip
scripts/download.pl: fix sourceforge url
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30726 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/download.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl
index 042b1cce7d..d79950f9b2 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";