DownloadLocatedFile: fix use with older wget version

The option "--no-use-server-timestamps" is apparently newer than
Haiku's wget.
This commit is contained in:
Ingo Weinhold 2013-07-11 14:00:34 +02:00
parent f20d944bea
commit 3e58289628
1 changed files with 2 additions and 1 deletions

View File

@ -412,7 +412,8 @@ rule DownloadLocatedFile target : url : source
actions DownloadLocatedFile1
{
source="$(2)"
wget --no-use-server-timestamps -O "$(1)" $(URL)
wget -O "$(1)" $(URL)
touch "$(1)"
}
rule DownloadFile file : url : source