1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(uninstall): Remove desktop file and icons, game scores if empty.

This commit is contained in:
Glenn Morris 2008-12-13 20:32:30 +00:00
parent 8e7aa5def5
commit 8bfbbb97da
2 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,7 @@
(MAN_PAGES): New variable.
(install-arch-indep, uninstall): Use MAN_PAGES for list of files to add
and remove.
(uninstall): Remove desktop file and icons, game scores if empty.
2008-12-11 Dan Nicolaescu <dann@ics.uci.edu>

View File

@ -662,7 +662,12 @@ uninstall:
done;)
(cd $(DESTDIR)${man1dir} && rm -f $(MAN_PAGES))
(cd $(DESTDIR)${bindir} && rm -f $(EMACSFULL) $(EMACS))
(cd $(DESTDIR)${icondir} && rm -f hicolor/*x*/apps/emacs* hicolor/scalable/*/emacs*)
-rm -f $(DESTDIR)${desktopdir}/emacs.desktop
for file in snake-scores tetris-scores; do \
file=$(DESTDIR)${gamedir}/$${file}; \
[ -s $${file} ] || rm -f $$file; \
done
FRC: