diff options
author | Keith Whitwell <[email protected]> | 2004-04-14 14:41:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-14 14:41:18 +0000 |
commit | e3b0dde49c8f14d7e5de440e9e914612868078f5 (patch) | |
tree | 1d97bb60059c4eecf3af32869e54ffc663390891 /src/Makefile | |
parent | f2b3d0828e154f4e3bbd57a88b82fa851b07f26b (diff) |
Fail if any subdir fails.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 8003c5a95c5..8e9b8b96684 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 |