From c720be1c3bd82b45f7ccfffc48d3334b8a291adc Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Wed, 7 Sep 2005 05:51:29 +0000 Subject: [PATCH] manke uninstall now remove all files (.mo files, gajim_about.png and man pages) --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2e2327aa5..9f53e5017 100644 --- a/Makefile +++ b/Makefile @@ -137,8 +137,10 @@ uninstall: rm -rf "$(DESTDIR)$(PREFIX)/lib/gajim" # the .so files are here rm -f "$(DESTDIR)$(PREFIX)/bin/gajim" # the bash script rm -f "$(DESTDIR)$(PREFIX)/bin/gajim-remote" # remote-control script - rm -f "$(MANDIR)/man1/gajim.1.gz" # the man page - rm -f "$(MANDIR)/man1/gajim-remote.1.gz" # the man page + rm -f "$(MANDIR)/man1/gajim.1" # the man page + rm -f "$(MANDIR)/man1/gajim-remote.1" # the man page rm -f "$(DESTDIR)$(PREFIX)/share/pixmaps/gajim.png" # the icon + rm -f "$(DESTDIR)$(PREFIX)/share/pixmaps/gajim_about.png" # the icon rm -f "$(DESTDIR)$(PREFIX)/share/applications/gajim.desktop" #the desktop + find "$(DESTDIR)$(PREFIX)/share/locale" -name 'gajim.mo' -exec rm {} \; #the .mo files @echo done uninstalling