summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-04-22 19:42:09 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-04-22 19:42:09 +0200
commit79aa182cc99a71384078d8f9904a251eee8f192a (patch)
tree32c20a8668186257a8d9156ca56e7514ba8aee82 /mk
parent15fa61b4b259eb6ab073dc494e52bc26fb72ef7c (diff)
fix bulkallmod
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk8
1 files changed, 4 insertions, 4 deletions
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); \