aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-10-15 17:57:20 -0400
committerGlenn Morris2012-10-15 17:57:20 -0400
commit293902c8b28955cce23d0ae79820d363ba99bf72 (patch)
tree0222c53d3f1652227594e142aa777f8a913dda59
parentf14a43805d112a783d769c61ac234015595199c2 (diff)
downloademacs-293902c8b28955cce23d0ae79820d363ba99bf72.tar.gz
emacs-293902c8b28955cce23d0ae79820d363ba99bf72.zip
(install-etc): Fix previous change
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 95f851b0ada..d929160c597 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -647,9 +647,9 @@ install-etc:
647 ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \ 647 ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \
648 for icon in $${dir}/*.*; do \ 648 for icon in $${dir}/*.*; do \
649 [ -r $${icon} ] || continue ; \ 649 [ -r $${icon} ] || continue ; \
650 dest=`echo "$${icon}" | sed '$(TRANSFORM)'` ; \ 650 dest=`echo "$${icon}" | sed -e 's|.*/||' -e '$(TRANSFORM)'` ; \
651 ( cd $${thisdir}; \ 651 ( cd $${thisdir}; \
652 ${INSTALL_DATA} ${iconsrcdir}/$${icon} $(DESTDIR)${icondir}/$${dest} ) \ 652 ${INSTALL_DATA} ${iconsrcdir}/$${icon} $(DESTDIR)${icondir}/$${dir}/$${dest} ) \
653 || exit 1; \ 653 || exit 1; \
654 done ; \ 654 done ; \
655 done 655 done