* Makefile.in: Reinstate ignoring of errors for doc target.

This commit is contained in:
Christopher Faylor 2013-11-06 23:26:23 +00:00
parent 2a98b3363e
commit 01eddfd7b2
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
* Makefile.in: Reinstate ignoring of errors for doc target.
2013-06-18 Corinna Vinschen <corinna@vinschen.de>
* Makefile.common: Add rule to build assembler code.

View File

@ -79,14 +79,10 @@ install-info:
info:
$(SUBDIRS):
@if cd $@ 2>/dev/null; then \
$(MAKE) all || exit 1; \
fi || exit 0
${MAKE} -C $@ all || ([ "$@" == doc ] && echo "*** error ignored")
$(INSTALL_SUBDIRS):
@if cd ${patsubst install_%,%,$@} 2>/dev/null; then \
$(MAKE) install || exit 1; \
fi || exit 0
${MAKE} -C $@ all || ([ "$@" == install_doc ] && echo "*** error ignored")
$(CLEAN_SUBDIRS):
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \