From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kim Phillips Date: Mon, 13 Sep 2010 20:17:30 -0500 Subject: [U-Boot] [PATCH next] silence awk command display during build Message-ID: <20100913201730.3f2bc58f.kim.phillips@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de [u-boot next]$ ./MAKEALL 83xx awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > .boards.depend Configuring for ve8313 board... Signed-off-by: Kim Phillips --- applies to u-boot.git's next branch. Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 36f2e1e..50bbe08 100644 --- a/Makefile +++ b/Makefile @@ -495,7 +495,7 @@ unconfig: sinclude .boards.depend .boards.depend: boards.cfg - awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ + @awk '(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config; $$(MAKE)" }' $< > $@ # # Functions to generate common board directory names -- 1.7.2.1