summaryrefslogtreecommitdiff
path: root/mk/build.mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-04-28 21:54:06 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-04-28 21:54:06 +0200
commitbe441a7f64db3c6f8cf4b66c4fba685ebde32916 (patch)
treea388117e7d4c637078dfa0df4a3d12d1d2fcfd79 /mk/build.mk
parent7d21e25fc4ac3c3bb24204c8fc8c694ccda2b4c8 (diff)
parent3182a995a0cda63c6988243a64c929395736257e (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'mk/build.mk')
-rw-r--r--mk/build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/build.mk b/mk/build.mk
index 2a3bf2d34..8646c79bc 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -214,7 +214,7 @@ clean:
@$(TRACE) clean
$(MAKE) -C $(CONFIG) clean
for d in ${STAGING_PKG_DIR}; do \
- for f in $$(ls $$d/[a-z]*|grep -v [A-Z] 2>/dev/null); do \
+ for f in $$(ls $$d/[a-z]* 2>/dev/null |grep -v [A-Z] 2>/dev/null); do \
while read file ; do \
rm ${STAGING_DIR}/$$file 2>/dev/null;\
done < $$f ; \
@@ -513,7 +513,7 @@ bulk:
( \
echo === building $$arch $$system $$libc on $$(date); \
$(GMAKE) prereq && \
- $(GMAKE) ARCH=$$arch SYSTEM=$$system LIBC=$$libc FS=archive defconfig; \
+ $(GMAKE) ARCH=$$arch SYSTEM=$$system LIBC=$$libc FS=nfsroot defconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit;fi; \
rm .config; \
) 2>&1 | tee $(TOPDIR)/bin/$${system}_$${arch}_$$libc/build.log; \