From 79aa182cc99a71384078d8f9904a251eee8f192a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 22 Apr 2010 19:42:09 +0200 Subject: fix bulkallmod --- mk/build.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mk') diff --git a/mk/build.mk b/mk/build.mk index 5cd9a1458..cc6c447ff 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -416,7 +416,7 @@ endif # ! ifeq ($(strip $(ADK_HAVE_DOT_CONFIG)),y) # build all targets and combinations bulk: - while read target libc fs; do \ + @while read target libc fs; do \ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ @@ -428,7 +428,7 @@ bulk: done <${TOPDIR}/target/bulk.lst bulktoolchain: - while read target libc; do \ + @while read target libc; do \ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc on $$(date); \ @@ -440,7 +440,7 @@ bulktoolchain: done <${TOPDIR}/target/bulktool.lst bulkall: - while read target libc fs; do \ + @while read target libc fs; do \ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ @@ -452,7 +452,7 @@ bulkall: done <${TOPDIR}/target/bulk.lst bulkallmod: - while read target libc fs; do \ + @while read target libc fs; do \ mkdir -p $(TOPDIR)/bin/$${target}_$$libc; \ ( \ echo === building $$target $$libc $$fs on $$(date); \ -- cgit v1.2.3