summaryrefslogtreecommitdiffstats
path: root/scripts/download.pl
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-07-03 15:00:24 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-07-03 15:00:24 +0000
commit0649dfdfb60e2667f21f647d2c4b640f9be3d8f6 (patch)
tree69491f3c816d68db152bc7233f9cc268ee139a16 /scripts/download.pl
parent3d9f6f3d3536a14458009d1954460c824853743e (diff)
downloadmaster-31e0f0ae-0649dfdfb60e2667f21f647d2c4b640f9be3d8f6.tar.gz
master-31e0f0ae-0649dfdfb60e2667f21f647d2c4b640f9be3d8f6.tar.bz2
master-31e0f0ae-0649dfdfb60e2667f21f647d2c4b640f9be3d8f6.zip
download.pl: cope with potential two-digit linux versions
SVN-Revision: 27376
Diffstat (limited to 'scripts/download.pl')
-rwxr-xr-xscripts/download.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/download.pl b/scripts/download.pl
index 50ecfc6966..08949d698a 100755
--- a/scripts/download.pl
+++ b/scripts/download.pl
@@ -136,9 +136,9 @@ foreach my $mirror (@ARGV) {
push @mirrors, "ftp://ftp.digex.net/pub/gnu/$1";
} elsif ($mirror =~ /^\@KERNEL\/(.+)$/) {
my @extra = ( $1 );
- if ($filename =~ /linux-\d+\.\d+\.\d+-rc/) {
+ if ($filename =~ /linux-\d+\.\d+(?:\.\d+)?-rc/) {
push @extra, "$extra[0]/testing";
- } elsif ($filename =~ /linux-(\d+\.\d+\.\d+)/) {
+ } elsif ($filename =~ /linux-(\d+\.\d+(?:\.\d+)?)/) {
push @extra, "$extra[0]/longterm/v$1";
}
foreach my $dir (@extra) {