From ffe6f55e4560e408b27807498f4c35be44f8501f Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 10 Jan 2011 12:08:35 +0000 Subject: [PATCH] * Makefile.in (stmp-bsp): Exit when subdirs fail. (install): Likewise. --- libgloss/ChangeLog | 5 +++++ libgloss/Makefile.in | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index 17426f140..01a971a37 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,8 @@ +2011-01-10 Mike Frysinger + + * Makefile.in (stmp-bsp): Exit when subdirs fail. + (install): Likewise. + 2010-12-02 Jayant Sonar jayant.sonar@kpitcummins.com Kaushik Phatak kaushik.phatak@kpitcummins.com 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