[Buildroot] [PATCH] autobuild-run: also check for timeout

Peter Korsgaard peter at korsgaard.com
Mon Sep 8 20:17:51 UTC 2014


Timeout is part of coreutils since v8, so older distributions don't have it.

Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 scripts/autobuild-run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/autobuild-run b/scripts/autobuild-run
index d9f55f3..496f941 100755
--- a/scripts/autobuild-run
+++ b/scripts/autobuild-run
@@ -87,7 +87,7 @@ def check_version():
 
 def check_requirements(http_login, http_password):
     devnull = open(os.devnull, "w")
-    needed_progs = ["make", "git", "gcc"]
+    needed_progs = ["make", "git", "gcc", "timeout"]
     missing_requirements = False
 
     if http_login and http_password:
-- 
2.0.0



More information about the buildroot mailing list