diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Makefile.in | 3 |
2 files changed, 4 insertions, 2 deletions
| @@ -1,6 +1,7 @@ | |||
| 1 | 2012-10-24 Glenn Morris <rgm@gnu.org> | 1 | 2012-10-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (install-man): Don't apply transform to suffix. | 3 | * Makefile.in (install-etc, install-man): |
| 4 | Don't apply program transform to standard file suffixes. | ||
| 4 | 5 | ||
| 5 | 2012-10-23 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-10-23 Paul Eggert <eggert@cs.ucla.edu> |
| 6 | 7 | ||
diff --git a/Makefile.in b/Makefile.in index d9e7371cf4a..20d680e06ab 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -647,7 +647,8 @@ install-etc: | |||
| 647 | ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \ | 647 | ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \ |
| 648 | for icon in $${dir}/emacs[.-]*; do \ | 648 | for icon in $${dir}/emacs[.-]*; do \ |
| 649 | [ -r $${icon} ] || continue ; \ | 649 | [ -r $${icon} ] || continue ; \ |
| 650 | dest=`echo "$${icon}" | sed -e 's|.*/||' -e '$(TRANSFORM)'` ; \ | 650 | ext=`echo "$${icon}" | sed -e 's|.*\.||'`; \ |
| 651 | dest=`echo "$${icon}" | sed -e 's|.*/||' -e "s|\.$${ext}$$||" -e '$(TRANSFORM)'`.$${ext} ; \ | ||
| 651 | ( cd $${thisdir}; \ | 652 | ( cd $${thisdir}; \ |
| 652 | ${INSTALL_DATA} ${iconsrcdir}/$${icon} $(DESTDIR)${icondir}/$${dir}/$${dest} ) \ | 653 | ${INSTALL_DATA} ${iconsrcdir}/$${icon} $(DESTDIR)${icondir}/$${dir}/$${dest} ) \ |
| 653 | || exit 1; \ | 654 | || exit 1; \ |