aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.in
diff options
context:
space:
mode:
authorGravatar Peter Feigl <craven@gmx.net>2012-06-12 09:22:45 +0200
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-06-15 16:31:35 -0700
commitf2846a0b78044a8f65d6bbbfec612a049535bbd9 (patch)
tree46af14a7f2f37dd191aef3fb1e0d6550a03411ea /Makefile.in
parentdbde7033d86fe3e2f2279b16eb731c2667f577ea (diff)
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.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 7461b6f1..9320c8ce 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\