From 129a1e0714dcb4c12681f162b52310b08e7a680c Mon Sep 17 00:00:00 2001 From: Mike Baker Date: Thu, 4 Feb 2010 04:43:17 +0000 Subject: [PATCH] disable stdin unless make V=99; fixes bug where compilation can stall waiting for input SVN-Revision: 19511 --- include/verbose.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/verbose.mk b/include/verbose.mk index f795e28045..857be24a32 100644 --- a/include/verbose.mk +++ b/include/verbose.mk @@ -44,7 +44,7 @@ ifneq ($(KBUILD_VERBOSE),99) SILENT:= endif export QUIET:=1 - SUBMAKE=cmd() { $(SILENT) $(MAKE) -s $$* || { echo "make $$*: build failed. Please re-run make with V=99 to see what's going on"; false; } } 8>&1 9>&2; cmd + SUBMAKE=cmd() { $(SILENT) $(MAKE) -s $$* < /dev/null || { echo "make $$*: build failed. Please re-run make with V=99 to see what's going on"; false; } } 8>&1 9>&2; cmd endif .SILENT: $(MAKECMDGOALS) -- 2.30.2