[Buildroot] [PATCH] Silent wrapper Suppose we use Makefile wrapper and build some project out of buildroot tree (O=...). The commands like "make busybox-all-external-deps" will output the string "uname 022 && make ..." to stdout before the usefull information. It pollutes stdout. In the same time if we use the same command in the buildroot source-tree then we don't get the additional output. Some external scripts can analyze output of make and additional output can break them. This patch make wrapper silent.

Serj Kalichev serj.kalichev at gmail.com
Wed Oct 24 15:47:29 UTC 2018


Signed-off-by: Serj Kalichev <serj.kalichev at gmail.com>
---
 support/scripts/mkmakefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/mkmakefile b/support/scripts/mkmakefile
index 37162a3173..3b1a9f8774 100755
--- a/support/scripts/mkmakefile
+++ b/support/scripts/mkmakefile
@@ -33,7 +33,7 @@ MAKEFLAGS += --no-print-directory
 all	:= \$(filter-out Makefile,\$(MAKECMDGOALS))
 
 _all:
-	umask 0022 && \$(MAKE) \$(MAKEARGS) \$(all)
+	@umask 0022 && \$(MAKE) \$(MAKEARGS) \$(all)
 
 Makefile:;
 
-- 
2.17.1



More information about the buildroot mailing list