]> sourceware.org Git - newlib-cygwin.git/commitdiff
* Makefile.in: Reinstate ignoring of errors for doc target.
authorChristopher Faylor <me@cgf.cx>
Wed, 6 Nov 2013 23:26:23 +0000 (23:26 +0000)
committerChristopher Faylor <me@cgf.cx>
Wed, 6 Nov 2013 23:26:23 +0000 (23:26 +0000)
winsup/ChangeLog
winsup/Makefile.in

index 826128805b01069a36fb67557dae0da632e8ac62..38947e97c3c6c7a46c3265eac68157ab2d8d53ab 100644 (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.
index f9b1e6571071677d4e6834d215f3f335da8f1a14..29c1e9ecbb75cff851c20f6a834852afd4275096 100644 (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 \
This page took 0.030356 seconds and 5 git commands to generate.