diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-06 17:13:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-06 17:13:52 +0000 |
commit | ba97490a028827f29c1b73719b664ac31584b44e (patch) | |
tree | 8a56df0248d6093e370d51a802c487c6189efa3e | |
parent | 268a7366e952a44067c01250fb84496f683afd68 (diff) | |
download | upstream-ba97490a028827f29c1b73719b664ac31584b44e.tar.gz upstream-ba97490a028827f29c1b73719b664ac31584b44e.tar.bz2 upstream-ba97490a028827f29c1b73719b664ac31584b44e.zip |
change wget timeout options to --timeout= for compatibility
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@571 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/download.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index cbe19348e2..edd32d5c8a 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -15,7 +15,7 @@ sub download { my $mirror = shift; - open WGET, "wget -t1 --connect-timeout=20 --read-timeout=15 -O- \"$mirror/$filename\" |" or die "Cannot launch wget.\n"; + open WGET, "wget -t1 --timeout=20 -O- \"$mirror/$filename\" |" or die "Cannot launch wget.\n"; open MD5SUM, "| md5sum > \"$target/$filename.md5sum\"" or die "Cannot launch md5sum.\n"; open OUTPUT, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n"; my $buffer; |