diff options
| author | Glenn Morris | 2012-10-24 13:25:24 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-10-24 13:25:24 -0400 |
| commit | 8bfcb8a6a8b37bc38b2f5407d4ab7eb886b9e79c (patch) | |
| tree | ed7c93a7b4cb0150e7ee86f0b07310e3ec2382d9 /Makefile.in | |
| parent | a6c2cc07fcd8bf3c92ad087d1fe76bae1217b2f2 (diff) | |
| download | emacs-8bfcb8a6a8b37bc38b2f5407d4ab7eb886b9e79c.tar.gz emacs-8bfcb8a6a8b37bc38b2f5407d4ab7eb886b9e79c.zip | |
* Makefile.in (install-etc): Don't apply program transform to file suffixes.
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
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; \ |