From a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Wed, 24 Oct 2012 09:41:59 -0700 Subject: [PATCH] * Makefile.in (install-man): Don't apply transform to suffix. --- ChangeLog | 4 ++++ Makefile.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1d30382d34d..2f08ce49002 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-10-24 Glenn Morris + + * Makefile.in (install-man): Don't apply transform to suffix. + 2012-10-23 Paul Eggert * configure.ac (_FORTIFY_SOURCE): Do not multiply define (Bug#12714). diff --git a/Makefile.in b/Makefile.in index 5c5d30fb63f..d9e7371cf4a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -622,7 +622,7 @@ install-man: thisdir=`/bin/pwd`; \ cd ${mansrcdir}; \ for page in *.1; do \ - dest=`echo "$${page}" | sed '$(TRANSFORM)'`; \ + dest=`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1; \ (cd $${thisdir}; \ ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${dest}); \ ( [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ] ) || continue ; \ -- 2.39.2