From: Jo-Philipp Wich Date: Thu, 11 Jun 2009 11:10:35 +0000 (+0000) Subject: luci-0.9: merge r4835 X-Git-Tag: 0.9.0~202 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8d7586cffc8298a4fd5bae9dd319e17ae1ec5e77;p=oweals%2Fluci.git luci-0.9: merge r4835 --- diff --git a/Makefile b/Makefile index 0f0bf42bf..d082a9807 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,12 @@ all: build build: gccbuild luabuild gccbuild: - for i in $(MODULES); do make -C$$i compile; done + for i in $(MODULES); do \ + make -C$$i compile || { \ + echo "*** Compilation of $$i failed!"; \ + exit 1; \ + }; \ + done luabuild: i18nbuild for i in $(MODULES); do HOST=$(realpath host) make -C$$i luabuild; done