aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/Makefile.in1
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d48c71e..4eacf2b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * Makefile.in (intl.*): Honor non-zero exit codes in the intl
+ subdir.
+
S2000-06-03 Geoff Keating <geoffk@cygnus.com>
* alias.c (record_component_aliases): Don't inspect
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),