From c4acfdd87c62afe38f4b69d49df2f5269e3e9508 Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 10 Aug 2006 09:07:49 +1000 Subject: [PATCH] Add missing files to make uninstall darcs-hash:20060809230749-ac50b-2948357bb000b47b49b6310dabd84410fde3b461.gz --- Makefile.in | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 53a3963ae..233ea1313 100644 --- a/Makefile.in +++ b/Makefile.in @@ -444,14 +444,17 @@ uninstall: uninstall-translations rm -f $(DESTDIR)$(bindir)/xsel rm -f $(DESTDIR)$(sysconfdir)/fish rm -f $(DESTDIR)$(sysconfdir)/fish_inputrc + if test -f $(DESTDIR)$(sysconfdir)/fish.d/fish_interactive.fish; then \ + rm -f $(DESTDIR)$(sysconfdir)/fish.d/fish_interactive.fish; \ + fi if test -d $(DESTDIR)$(datadir)/fish; then \ rm -r $(DESTDIR)$(datadir)/fish; \ fi if test -d $(DESTDIR)$(docdir); then \ rm -r $(DESTDIR)$(docdir);\ fi - for i in fish.1 @XSEL_MAN@ mimedb.1 fishd.1 set_color.1 count.1; do \ - rm -f $(DESTDIR)$(mandir)/man1/$$i*; \ + for i in $(MANUALS); do + rm -f $(DESTDIR)$(mandir)/man1/`basename $$i`*; \ done; .PHONY: uninstall