diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-05 16:15:41 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-05 16:15:41 +0100 |
commit | 234f96e6a69ef49514165fff6e3771b605f5304c (patch) | |
tree | 364c8079341864bccebc30e844a5e857f02e97e5 /mk | |
parent | df5c8cb4c8f3339ea884b0b572767ec6bcd3d006 (diff) |
break out on first error
Diffstat (limited to 'mk')
-rw-r--r-- | mk/build.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mk/build.mk b/mk/build.mk index a6c5a7646..3b1ae662d 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -572,6 +572,7 @@ release: $(GMAKE) VERBOSE=1 all; if [ $$? -ne 0 ]; then touch .exit; exit 1;fi; \ rm .config; \ ) 2>&1 | tee $(TOPDIR)/bin/$(SYSTEM)_$(ARCH)_$$libc/build.log; \ + if [ -f .exit ];then break;fi \ done # build all target architecture, target systems and libc combinations |