* Makefile.in: Properly cd to directory sans install_ prefix. Report on errors

on doc install.  Only 'all' is special.
This commit is contained in:
Christopher Faylor 2013-11-07 00:29:46 +00:00
parent 2a6d6db8e2
commit 13dbf6b0aa
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
* Makefile.in: Properly cd to directory sans install_ prefix. Report
on errors on doc install. Only 'all' is special.
2013-11-06 Christopher Faylor <me.cygwin2013@cgf.cx>
* configure.ac: Detect windows headers/libs after we've figured out the

View File

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