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:
parent
c28885aede
commit
a6c2cc07fc
@ -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).
|
||||
|
@ -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 ; \
|
||||
|
Loading…
Reference in New Issue
Block a user