Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-01-10 15:08:35 +0300
committerCorinna Vinschen <corinna@vinschen.de>2011-01-10 15:08:35 +0300
commitffe6f55e4560e408b27807498f4c35be44f8501f (patch)
treeab4c9ca0375d8004bed3bb7e368ae75f5998ed4f /libgloss/Makefile.in
parent84ca64afa6cbd47c5440b9b450bf81c3ac028092 (diff)
* Makefile.in (stmp-bsp): Exit when subdirs fail.
(install): Likewise.
Diffstat (limited to 'libgloss/Makefile.in')
-rw-r--r--libgloss/Makefile.in4
1 files changed, 2 insertions, 2 deletions
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