aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-11-04 21:01:47 -0800
committerGlenn Morris2014-11-04 21:01:47 -0800
commitfdcbfeac69b3e9c7edb114d47beb7e9ac9d10df4 (patch)
tree21dbcb8d40ff634b6f821de95af2b8e3deb0a8e3
parenta9f1618de84c72516aae1c4d054d44d2b36750d2 (diff)
downloademacs-fdcbfeac69b3e9c7edb114d47beb7e9ac9d10df4.tar.gz
emacs-fdcbfeac69b3e9c7edb114d47beb7e9ac9d10df4.zip
* Makefile.in (install-info, uninstall): Use --no-print-directory.
(QUIET_SUBMAKE): Remove. Fixes: debbugs:18908
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.in8
2 files changed, 7 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 56f08c1d5be..6fa196a627e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12014-11-05 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (QUIET_SUBMAKE): Remove.
4 (install-info, uninstall): Use --no-print-directory. (Bug#18908)
5
12014-10-25 Eric S. Raymond <esr@thyrsus.com> 62014-10-25 Eric S. Raymond <esr@thyrsus.com>
2 7
3 * autogen.sh: Neutralize language specific to a repository type. 8 * autogen.sh: Neutralize language specific to a repository type.
diff --git a/Makefile.in b/Makefile.in
index 2f7294073b7..0c11828deb2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -67,10 +67,6 @@ CDPATH=
67# If Make doesn't predefine MAKE, set it here. 67# If Make doesn't predefine MAKE, set it here.
68@SET_MAKE@ 68@SET_MAKE@
69 69
70# Prevent submakes from outputting "Entering directory ..." and
71# "Leaving directory..." diagnostics that would mess up 'make echo-info'.
72QUIET_SUBMAKE = MAKELEVEL=0
73
74# ==================== Things `configure' Might Edit ==================== 70# ==================== Things `configure' Might Edit ====================
75 71
76cache_file = @cache_file@ 72cache_file = @cache_file@
@@ -641,7 +637,7 @@ install-info: info
641 [ -f "$(DESTDIR)${infodir}/dir" ] || \ 637 [ -f "$(DESTDIR)${infodir}/dir" ] || \
642 [ ! -f ${srcdir}/info/dir ] || \ 638 [ ! -f ${srcdir}/info/dir ] || \
643 ${INSTALL_DATA} ${srcdir}/info/dir "$(DESTDIR)${infodir}/dir"; \ 639 ${INSTALL_DATA} ${srcdir}/info/dir "$(DESTDIR)${infodir}/dir"; \
644 info_misc=`$(QUIET_SUBMAKE) $(MAKE) -s -C doc/misc echo-info`; \ 640 info_misc=`$(MAKE) --no-print-directory -s -C doc/misc echo-info`; \
645 cd ${srcdir}/info ; \ 641 cd ${srcdir}/info ; \
646 for elt in ${INFO_NONMISC} $${info_misc}; do \ 642 for elt in ${INFO_NONMISC} $${info_misc}; do \
647 test "$(HAVE_MAKEINFO)" = "no" && test ! -f $$elt && continue; \ 643 test "$(HAVE_MAKEINFO)" = "no" && test ! -f $$elt && continue; \
@@ -738,7 +734,7 @@ uninstall: uninstall-$(NTDIR) uninstall-doc
738 done 734 done
739 -rm -rf "$(DESTDIR)${libexecdir}/emacs/${version}" 735 -rm -rf "$(DESTDIR)${libexecdir}/emacs/${version}"
740 thisdir=`/bin/pwd`; \ 736 thisdir=`/bin/pwd`; \
741 (info_misc=`$(QUIET_SUBMAKE) $(MAKE) -s -C doc/misc echo-info`; \ 737 (info_misc=`$(MAKE) --no-print-directory -s -C doc/misc echo-info`; \
742 if cd "$(DESTDIR)${infodir}"; then \ 738 if cd "$(DESTDIR)${infodir}"; then \
743 for elt in ${INFO_NONMISC} $${info_misc}; do \ 739 for elt in ${INFO_NONMISC} $${info_misc}; do \
744 (cd "$${thisdir}"; \ 740 (cd "$${thisdir}"; \