summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2013-11-07 00:29:46 +0000
committerChristopher Faylor <me@cgf.cx>2013-11-07 00:29:46 +0000
commit13dbf6b0aa84af1477983e4c0061ba36e04ff089 (patch)
tree511d771e100e988470a580189234774828b5ebef
parent2a6d6db8e2dbe21e3d9c66ea3ed3447c46d48a0a (diff)
downloadcygnal-13dbf6b0aa84af1477983e4c0061ba36e04ff089.tar.gz
cygnal-13dbf6b0aa84af1477983e4c0061ba36e04ff089.tar.bz2
cygnal-13dbf6b0aa84af1477983e4c0061ba36e04ff089.zip
* Makefile.in: Properly cd to directory sans install_ prefix. Report on errors
on doc install. Only 'all' is special.
-rw-r--r--winsup/ChangeLog5
-rw-r--r--winsup/Makefile.in6
2 files changed, 8 insertions, 3 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 5c191c18c..1e2b18ebb 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -1,5 +1,10 @@
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
C compiler.
* configure: Regenerate.
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