diff options
author | Glenn Morris <rgm@gnu.org> | 2012-10-20 18:35:46 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-10-20 18:35:46 -0700 |
commit | ad483434e52196daa45b87cd6e1528c9ba0bdeb8 (patch) | |
tree | 5b81badfbdf7f17314174753c1d844995f96fde9 /Makefile.in | |
parent | 8dc2a723eb0e4387889474d87c2f2b00954ff893 (diff) | |
download | emacs-ad483434e52196daa45b87cd6e1528c9ba0bdeb8.tar.gz |
Put back old Emacs 22 icons, just don't install them
Some people prefer them to the newer icon
* Makefile.in (install-etc): Don't install emacs22 icons.
* etc/images/icons/hicolor/32x32/apps/emacs22.png:
* etc/images/icons/hicolor/16x16/apps/emacs22.png:
* etc/images/icons/hicolor/48x48/apps/emacs22.png:
* etc/images/icons/hicolor/24x24/apps/emacs22.png: Restore old icons.
* etc/images/icons/README: Restore info about emacs22 icons
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 2f5f78ba41a..d80496d8b7b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -648,7 +648,7 @@ install-etc: for dir in */*/apps */*/mimetypes; do \ [ -d $${dir} ] || continue ; \ ( cd $${thisdir}; ${MKDIR_P} $(DESTDIR)${icondir}/$${dir} ) ; \ - for icon in $${dir}/*.*; do \ + for icon in $${dir}/emacs[.-]*; do \ [ -r $${icon} ] || continue ; \ dest=`echo "$${icon}" | sed -e 's|.*/||' -e '$(TRANSFORM)'` ; \ ( cd $${thisdir}; \ |