summaryrefslogtreecommitdiffstats
path: root/libgloss
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-01-10 12:08:35 +0000
committerCorinna Vinschen <corinna@vinschen.de>2011-01-10 12:08:35 +0000
commitffe6f55e4560e408b27807498f4c35be44f8501f (patch)
treeab4c9ca0375d8004bed3bb7e368ae75f5998ed4f /libgloss
parent84ca64afa6cbd47c5440b9b450bf81c3ac028092 (diff)
downloadcygnal-ffe6f55e4560e408b27807498f4c35be44f8501f.tar.gz
cygnal-ffe6f55e4560e408b27807498f4c35be44f8501f.tar.bz2
cygnal-ffe6f55e4560e408b27807498f4c35be44f8501f.zip
* Makefile.in (stmp-bsp): Exit when subdirs fail.
(install): Likewise.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog5
-rw-r--r--libgloss/Makefile.in4
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 <vapier@gentoo.org>
+
+ * 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