Revert "scripts/download.pl: fix sourceforge url"
authorFelix Fietkau <nbd@openwrt.org>
Sun, 26 Feb 2012 09:29:53 +0000 (09:29 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 26 Feb 2012 09:29:53 +0000 (09:29 +0000)
To use the new url, the project name would need to be appended multiple times,
let's hope the old redirect will continue to work in the future

SVN-Revision: 30730

scripts/download.pl

index d79950f9b2ce3ee9031fe95cc660b7b6d81a0d5b..042b1cce7d79371fc6f8f30f7fe908e0464e626c 100755 (executable)
@@ -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/project/$1";
+                       push @mirrors, "http://downloads.sourceforge.net/$1";
                }
        } elsif ($mirror =~ /^\@GNU\/(.+)$/) {
                push @mirrors, "ftp://ftp.gnu.org/gnu/$1";