summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-24 10:16:36 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-24 10:16:36 +0100
commit6653e2fa4fcc6da11ffecc2b28dcea4287824bae (patch)
tree092b4b289e282d2178ad0df084fd4733a6661218 /mk
parented6090a791ac0bd072ad557510948e961235cb56 (diff)
add one logfile, no subdirs
Diffstat (limited to 'mk')
-rw-r--r--mk/build.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/build.mk b/mk/build.mk
index d2c7ee42e..c63770150 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -527,14 +527,13 @@ test-framework:
release:
for libc in uclibc glibc musl;do \
- mkdir -p $(TOPDIR)/firmware/$(SYSTEM)_$(ARCH)_$$libc; \
( \
echo === building $$libc on $$(date); \
$(GMAKE) prereq && \
$(GMAKE) ARCH=$(ARCH) SYSTEM=$(SYSTEM) LIBC=$$libc FS=archive allmodconfig; \
$(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit; exit 1;fi; \
rm .config; \
- ) 2>&1 | tee $(TOPDIR)/firmware/$(SYSTEM)_$(ARCH)_$$libc/build.log; \
+ ) 2>&1 | tee $(TOPDIR)/firmware/release-build.log; \
if [ -f .exit ];then echo "Bulk build failed!"; break;fi \
done
if [ -f .exit ];then rm .exit;exit 1;fi