From 0de5ffff2ae1d5567a2d8152e1e897c824381c2d Mon Sep 17 00:00:00 2001 From: kovan Date: Sat, 14 Mar 2026 20:20:12 +0100 Subject: [PATCH] Document man page install location for POSIX installer The POSIX installer places man pages in $prefix/share/man (by default /usr/local/share/man) but this was not documented. On some systems like OpenBSD this path is not in the default man search path. Fixes #658 --- content/guides/install_clojure.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/guides/install_clojure.adoc b/content/guides/install_clojure.adoc index 31cc03a4..0f20e5e3 100644 --- a/content/guides/install_clojure.adoc +++ b/content/guides/install_clojure.adoc @@ -83,6 +83,8 @@ chmod +x posix-install.sh sudo ./posix-install.sh ---- +Man pages are installed to `$prefix/share/man` (by default `/usr/local/share/man`). On systems where this is not already in the man search path (such as OpenBSD), you may need to add it to your `MANPATH`. + To install to a custom location (like `/opt/infrastructure/clojure`), use the option `--prefix`: [source,shell]