diff options
| author | Glenn Morris | 2012-10-24 09:41:59 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-10-24 09:41:59 -0700 |
| commit | a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2 (patch) | |
| tree | 1f4faaeffa477777bb249dfab465b6fd3d9ff3c8 /Makefile.in | |
| parent | c28885aede510603835f3b21059ac59e0d6aa095 (diff) | |
| download | emacs-a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2.tar.gz emacs-a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2.zip | |
* Makefile.in (install-man): Don't apply transform to suffix.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 5c5d30fb63f..d9e7371cf4a 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -622,7 +622,7 @@ install-man: | |||
| 622 | thisdir=`/bin/pwd`; \ | 622 | thisdir=`/bin/pwd`; \ |
| 623 | cd ${mansrcdir}; \ | 623 | cd ${mansrcdir}; \ |
| 624 | for page in *.1; do \ | 624 | for page in *.1; do \ |
| 625 | dest=`echo "$${page}" | sed '$(TRANSFORM)'`; \ | 625 | dest=`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1; \ |
| 626 | (cd $${thisdir}; \ | 626 | (cd $${thisdir}; \ |
| 627 | ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${dest}); \ | 627 | ${INSTALL_DATA} ${mansrcdir}/$${page} $(DESTDIR)${man1dir}/$${dest}); \ |
| 628 | ( [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ] ) || continue ; \ | 628 | ( [ -n "${GZIP_INFO}" ] && [ -n "${GZIP_PROG}" ] ) || continue ; \ |