From: Glenn Morris Date: Wed, 24 Oct 2012 16:41:59 +0000 (-0700) Subject: * Makefile.in (install-man): Don't apply transform to suffix. X-Git-Tag: emacs-24.2.90~209^2~87 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2;p=emacs.git * Makefile.in (install-man): Don't apply transform to suffix. --- 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 ; \