From: mbm Date: Thu, 4 Feb 2010 04:43:17 +0000 (+0000) Subject: disable stdin unless make V=99; fixes bug where compilation can stall waiting for... X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=648b182960602c202d61ee823b9437fd4a5a8d81;hp=fa49366b50606755e8ce2974ff88592b8036fce3 disable stdin unless make V=99; fixes bug where compilation can stall waiting for input git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19511 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/include/verbose.mk b/include/verbose.mk index f795e2804..857be24a3 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)