From b6bb63a2d05e475d37522d2c940139e8cb0c374a Mon Sep 17 00:00:00 2001 From: kovan Date: Sat, 14 Mar 2026 20:09:58 +0100 Subject: [PATCH] Fix MANPATH in custom location install examples The man pages are installed under share/man, not man. Verified against the actual install location (/usr/share/man/man1/clj.1.gz). Fixes #493 --- content/guides/install_clojure.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/guides/install_clojure.adoc b/content/guides/install_clojure.adoc index 31cc03a4..87e7b1e4 100644 --- a/content/guides/install_clojure.adoc +++ b/content/guides/install_clojure.adoc @@ -62,7 +62,7 @@ You may also want to extend the MANPATH in `/etc/man_db.conf` to include the man [source] ---- -MANPATH_MAP /opt/infrastructure/clojure/bin /opt/infrastructure/clojure/man +MANPATH_MAP /opt/infrastructure/clojure/bin /opt/infrastructure/clojure/share/man ---- The `linux-install` script can be removed after installation. @@ -94,7 +94,7 @@ You may also want to extend the MANPATH in `/etc/man_db.conf` to include the man [source] ---- -MANPATH_MAP /opt/infrastructure/clojure/bin /opt/infrastructure/clojure/man +MANPATH_MAP /opt/infrastructure/clojure/bin /opt/infrastructure/clojure/share/man ---- The `posix-install` script can be removed after installation.