diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-28 09:33:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-04-28 09:33:20 +0200 |
commit | d454c50ccdfc9fa86e30a3a5b8effbbf1fc25d46 (patch) | |
tree | a725128f61be0067af771f10d8c2cce3db14e77c | |
parent | f1cf326faaf162903f87aa719545733e27592ab4 (diff) |
fix minor error message, use nfsroot for bulk
-rw-r--r-- | mk/build.mk | 4 |
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; \ |