From ffe6f55e4560e408b27807498f4c35be44f8501f Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 10 Jan 2011 12:08:35 +0000 Subject: * Makefile.in (stmp-bsp): Exit when subdirs fail. (install): Likewise. --- libgloss/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgloss/Makefile.in') diff --git a/libgloss/Makefile.in b/libgloss/Makefile.in index 24518ace1..4528d58f5 100644 --- a/libgloss/Makefile.in +++ b/libgloss/Makefile.in @@ -104,7 +104,7 @@ stmp-bsp: force for dir in .. ${SUBDIRS}; do \ if [ x$$dir != x.. ]; then \ if [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)) || exit $$?; \ else true; fi; \ else true; fi; \ done @@ -115,7 +115,7 @@ install: force for dir in .. ${SUBDIRS}; do \ if [ x$$dir != x.. ]; then \ if [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install) || exit $$?; \ else true; fi; \ else true; fi; \ done -- cgit v1.2.3