diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-10-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (install-man): Don't apply transform to suffix. | ||
| 4 | |||
| 1 | 2012-10-23 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2012-10-23 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | * configure.ac (_FORTIFY_SOURCE): Do not multiply define (Bug#12714). | 7 | * 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: | |||
| 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 ; \ |