From 3847e19f7f32ef1e77fecf170f1cddc4ee73e728 Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sat, 4 Jul 2015 14:00:43 -0500 Subject: [PATCH] jam: Make DownloadLocatedFile1 more aggressive. 10s timeout == retry --- build/jam/FileRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/FileRules b/build/jam/FileRules index ef835c922d..4f300db707 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 -O "$(1)" $(URL) || exit 1 + wget --retry-connrefused --timeout 10 -O "$(1)" $(URL) || exit 1 touch "$(1)" }