1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

* Makefile.in (install-man): Don't apply transform to suffix.

This commit is contained in:
Glenn Morris 2012-10-24 09:41:59 -07:00
parent c28885aede
commit a6c2cc07fc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-10-24 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-man): Don't apply transform to suffix.
2012-10-23 Paul Eggert <eggert@cs.ucla.edu>
* configure.ac (_FORTIFY_SOURCE): Do not multiply define (Bug#12714).

View File

@ -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 ; \