summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5f1b42f0e..fad2350c4 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,7 @@ all .DEFAULT:
echo cd $(builddir); \
cd $(builddir); \
echo $(MAKE) $@; \
- $(MAKE) $@; \
+ $(MAKE) $@ || exit 1; \
else \
echo; \
echo 'Run configure first, or type "make" in a configured build directory.'; \
@@ -25,7 +25,7 @@ distclean maintainerclean:
echo cd $(builddir); \
cd $(builddir); \
echo $(MAKE) $@; \
- $(MAKE) $@; \
+ $(MAKE) $@ || exit 1; \
fi
test -z "$(builddir)" || rm -fr "$(builddir)"
rm -f config.reconfig
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback