aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-08-10 09:07:49 +1000
committerGravatar axel <axel@liljencrantz.se>2006-08-10 09:07:49 +1000
commitc4acfdd87c62afe38f4b69d49df2f5269e3e9508 (patch)
tree7b14b6f105dfdb3017b20da8c1d7e33503707337 /Makefile.in
parent41f8007a0369e57f24e3c50ff91bb6e23805bfba (diff)
Add missing files to make uninstall
darcs-hash:20060809230749-ac50b-2948357bb000b47b49b6310dabd84410fde3b461.gz
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 53a3963a..233ea131 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