X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2FMakefile.in;h=fdbcdedeb7bb6b2b3da89e4953f651b98e0ae687;hb=fcc392a34e8faa72fdc186f13905b4156e83d4b9;hp=7e6dbde92063e1caecefaff5db90c6ea067578fc;hpb=38f48d729d916673434b57dabd7e88e637544033;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/Makefile.in b/sim/Makefile.in index 7e6dbde920..fdbcdedeb7 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -130,7 +130,7 @@ all: if [ "$$dir" = "." ]; then \ true; \ elif [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS)) || exit 1; \ else true; fi; \ done @@ -140,7 +140,7 @@ clean mostlyclean: if [ "$$dir" = "." ]; then \ true; \ elif [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@) || exit 1; \ else true; fi; \ done @@ -150,7 +150,7 @@ distclean maintainer-clean realclean: if [ "$$dir" = "." ]; then \ true; \ elif [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) $@) || exit 1; \ else true; fi; \ done rm -f Makefile config.cache config.log config.status @@ -161,7 +161,7 @@ install: if [ "$$dir" = "." ]; then \ true; \ elif [ -d $$dir ]; then \ - (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install); \ + (cd $$dir; $(MAKE) $(FLAGS_TO_PASS) install) || exit 1; \ else true; fi; \ done