Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2013-11-07 04:29:46 +0400
committerChristopher Faylor <me@cgf.cx>2013-11-07 04:29:46 +0400
commit13dbf6b0aa84af1477983e4c0061ba36e04ff089 (patch)
tree511d771e100e988470a580189234774828b5ebef /winsup/Makefile.in
parent2a6d6db8e2dbe21e3d9c66ea3ed3447c46d48a0a (diff)
* Makefile.in: Properly cd to directory sans install_ prefix. Report on errors
on doc install. Only 'all' is special.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r--winsup/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index 29c1e9ecb..c55201d51 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -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