From 548155ab7dab89ccd61a5f035a6add247768ad0a Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Sun, 26 Feb 2012 09:29:53 +0000
Subject: [PATCH] Revert "scripts/download.pl: fix sourceforge url"

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/download.pl b/scripts/download.pl
index d79950f9b2c..042b1cce7d7 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/project/$1";
+			push @mirrors, "http://downloads.sourceforge.net/$1";
 		}
 	} elsif ($mirror =~ /^\@GNU\/(.+)$/) {
 		push @mirrors, "ftp://ftp.gnu.org/gnu/$1";
-- 
GitLab