From 40318b2d142d2a4cd6d1d573f36fc999e0ce422f Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Sun, 12 Apr 2015 20:44:38 +0530 Subject: [PATCH] Do not install ChangeLog.1 in man1dir --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 9f235d5..381b32a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -684,12 +684,13 @@ install-man: thisdir=`/bin/pwd`; \ cd ${mansrcdir}; \ for page in *.1; do \ + if [ "$${page}" != ChangeLog.1 ]; then \ dest=`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1; \ (cd "$${thisdir}"; \ ${INSTALL_DATA} ${mansrcdir}/$${page} "$(DESTDIR)${man1dir}/$${dest}"); \ [ -n "${GZIP_PROG}" ] || continue ; \ rm -f "$(DESTDIR)${man1dir}/$${dest}.gz"; \ - ${GZIP_PROG} -9n "$(DESTDIR)${man1dir}/$${dest}" || true; \ + ${GZIP_PROG} -9n "$(DESTDIR)${man1dir}/$${dest}" || true; fi; \ done ## Install those items from etc/ that need to end up elsewhere. -- 2.2.1