1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-21 06:55:39 +00:00

* Makefile.in (install-etc): Don't apply program transform to file suffixes.

This commit is contained in:
Glenn Morris 2012-10-24 13:25:24 -04:00
parent a6c2cc07fc
commit 8bfcb8a6a8
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
2012-10-24 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-man): Don't apply transform to suffix.
* Makefile.in (install-etc, install-man):
Don't apply program transform to standard file suffixes.
2012-10-23 Paul Eggert <eggert@cs.ucla.edu>

View File

@ -647,7 +647,8 @@ install-etc:
( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \
for icon in $${dir}/emacs[.-]*; do \
[ -r $${icon} ] || continue ; \
dest=`echo "$${icon}" | sed -e 's|.*/||' -e '$(TRANSFORM)'` ; \
ext=`echo "$${icon}" | sed -e 's|.*\.||'`; \
dest=`echo "$${icon}" | sed -e 's|.*/||' -e "s|\.$${ext}$$||" -e '$(TRANSFORM)'`.$${ext} ; \
( cd $${thisdir}; \
${INSTALL_DATA} ${iconsrcdir}/$${icon} $(DESTDIR)${icondir}/$${dir}/$${dest} ) \
|| exit 1; \