summaryrefslogtreecommitdiffstats
path: root/openwrt/scripts
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-20 02:43:15 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-01-20 02:43:15 +0000
commita5375929b95a1bb780474bc184eba6dfa370cda5 (patch)
tree4c5b0514c2263a5075452cbe9a26dfc41b127eaa /openwrt/scripts
parent90fe1e2220c788976fbe5d28d78fc3289e8e75cc (diff)
fix download script for sourceforge urls
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3019 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-xopenwrt/scripts/download.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/openwrt/scripts/download.pl b/openwrt/scripts/download.pl
index 9f46810a8..84c97cf9a 100755
--- a/openwrt/scripts/download.pl
+++ b/openwrt/scripts/download.pl
@@ -62,6 +62,9 @@ foreach my $mirror (@ARGV) {
/type="radio" name="use_default" value="(\w+)" onclick="form\.submit\(\)"\/>/ and do {
push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath";
};
+ /<a href="\/.+\?use_mirror=(\w+)"><b>Download/ and do {
+ push @mirrors, "http://$1.dl.sourceforge.net/sourceforge/$sfpath";
+ };
}
push @mirrors, "http://dl.sourceforge.net/sourceforge/$sfpath";
close SF;