[Libreoffice-commits] .: Makefile.in
Tor Lillqvist
tml at kemper.freedesktop.org
Sat Jul 23 00:33:48 PDT 2011
Makefile.in | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 281fd42dc16d41b54e6913dcf5391d08c3e0f870
Author: Tor Lillqvist <tml at iki.fi>
Date: Sat Jul 23 10:33:30 2011 +0300
Don't continue making cross-build-toolset if building one module fails
diff --git a/Makefile.in b/Makefile.in
index ded85bf..a7b887b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -84,9 +84,9 @@ cross-build-toolset:
xmlhelp \
shell; do \
if grep -q gb_Module_add_targets $$D/Module_$$D.mk 2>/dev/null; then \
- (cd $$D && make -sr -j at BUILD_MAX_JOBS@) \
+ (cd $$D && make -sr -j at BUILD_MAX_JOBS@) || exit 1; \
else \
- (cd $$D && build.pl $(GBUILD_OPT) -P at BUILD_NCPUS@ -- -P at BUILD_MAX_JOBS@ && deliver.pl) \
+ (cd $$D && build.pl $(GBUILD_OPT) -P at BUILD_NCPUS@ -- -P at BUILD_MAX_JOBS@ && deliver.pl) || exit 1; \
fi; \
done
endif
More information about the Libreoffice-commits
mailing list