Commit 031926e2 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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
parent 84d6d72f
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
......
......@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment