From f2846a0b78044a8f65d6bbbfec612a049535bbd9 Mon Sep 17 00:00:00 2001 From: Peter Feigl Date: Tue, 12 Jun 2012 09:22:45 +0200 Subject: [PATCH] correcting path of man-pages to ./man/man1/ instead of ./man/ Change the path where man-pages are installed to /usr/share/fish/man/man1 instead of /usr/share/fish/man, so that tools like mandb can process it. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 7461b6f1f..9320c8cee 100644 --- a/Makefile.in +++ b/Makefile.in @@ -606,7 +606,7 @@ install-force: all install-translations $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/completions $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/functions - $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/man + $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/man/man1 $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools $(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/tools/web_config $(INSTALL) -m 644 etc/config.fish $(DESTDIR)$(sysconfdir)/fish/ @@ -620,7 +620,7 @@ install-force: all install-translations true; \ done; for i in share/man/*.1; do \ - $(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/man/; \ + $(INSTALL) -m 644 $$i $(DESTDIR)$(datadir)/fish/man/man1/; \ true; \ done; for i in share/tools/*.py; do\