summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-04-14 14:41:18 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-04-14 14:41:18 +0000
commite3b0dde49c8f14d7e5de440e9e914612868078f5 (patch)
tree1d97bb60059c4eecf3af32869e54ffc663390891 /src/Makefile
parentf2b3d0828e154f4e3bbd57a88b82fa851b07f26b (diff)
Fail if any subdir fails.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 8003c5a95c..8e9b8b9668 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -13,7 +13,7 @@ default: $(LIB_DIR) subdirs
subdirs:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
- (cd $$dir ; make) ; \
+ (cd $$dir ; make) || exit 1 ; \
fi \
done