summaryrefslogtreecommitdiff
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
commit4dc4ebe0c856b88c8f3cf80c5a23a259e1c26586 (patch)
treecc15c73cc287e35efc1291688c600193c0d1a5fd /scripts
parentfe66f30aae870a2d1230fcf0d3fb0b8007f054e2 (diff)
downloadmtk-20170518-4dc4ebe0c856b88c8f3cf80c5a23a259e1c26586.zip
mtk-20170518-4dc4ebe0c856b88c8f3cf80c5a23a259e1c26586.tar.gz
mtk-20170518-4dc4ebe0c856b88c8f3cf80c5a23a259e1c26586.tar.bz2
scripts/download.pl: fix sourceforge url
SVN-Revision: 30726
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 042b1cc..d79950f 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";