]> rtime.felk.cvut.cz Git - fpga/lx-cpu1/newlib-tumbl.git/commitdiff
* Makefile.in (stmp-bsp): Exit when subdirs fail.
authorCorinna Vinschen <corinna@vinschen.de>
Mon, 10 Jan 2011 12:08:35 +0000 (12:08 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Mon, 10 Jan 2011 12:08:35 +0000 (12:08 +0000)
(install): Likewise.

libgloss/ChangeLog
libgloss/Makefile.in

index 17426f14056baddc786b50829f06370b602fcc17..01a971a37b01b661ab5c18eb95f7f30faa69b5b4 100644 (file)
@@ -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
 
index 24518ace15673403867a8377c816e630a8aa1ffb..4528d58f5a2e629d796af43562300341d5562bee 100644 (file)
@@ -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