aboutsummaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2000-06-04 19:52:22 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-06-04 19:52:22 +0000
commit031926e2a3b8593caea2941bdaf06b04042ef598 (patch)
treef2933980e97a9a5c4be4e35ebf2cc5d35c9884cb /gcc/Makefile.in
parent84d6d72f8215a4cbc8d0b5fa50e36cf3a5f66323 (diff)
downloadgcc-031926e2a3b8593caea2941bdaf06b04042ef598.zip
gcc-031926e2a3b8593caea2941bdaf06b04042ef598.tar.gz
gcc-031926e2a3b8593caea2941bdaf06b04042ef598.tar.bz2
Makefile.in (intl.*): Honor non-zero exit codes in the intl subdir.
* Makefile.in (intl.*): Honor non-zero exit codes in the intl subdir. From-SVN: r34393
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 10f7a90..be10fce 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -1764,6 +1764,7 @@ intl.all intl.install intl.uninstall intl.distdir \
target=`expr $@ : 'intl.\(.*\)'` && \
echo "(cd $$d && $(MAKE) $$target)" && \
(cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
+ if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
done
# intl.distdir doesn't copy the intl makefiles (since they aren't distributed),