From c9e6b4e096eca70a0993bfe735f407fcfc399d19 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Thu, 30 Jun 2016 15:09:17 -0500 Subject: [PATCH] jam: Extend wget wait * I shrunk this down, but it seems like packages.haiku-os.org is taking an long time to access some packages (>10 sec) * This should help relability of package downloads until someone checks out why connections take so long --- build/jam/FileRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/FileRules b/build/jam/FileRules index 4f300db707..b0d6d7369d 100644 --- a/build/jam/FileRules +++ b/build/jam/FileRules @@ -478,7 +478,7 @@ actions DownloadLocatedFile1 echo "ERROR: Would need to download $(URL), but HAIKU_NO_DOWNLOADS is set!" exit 1 fi - wget --retry-connrefused --timeout 10 -O "$(1)" $(URL) || exit 1 + wget --retry-connrefused --timeout 30 -O "$(1)" $(URL) || exit 1 touch "$(1)" }