commit b9b10bd637c502b328c8028ce79070bc3b04481f
parent 7cc3a1ebd3ce92df01d78ebf420ce4e4d68d5c15
Author: Lennart Jablonka <humm@ljabl.com>
Date: Tue, 30 Jan 2024 20:27:14 +0000
configs/openbsd.mk: default to /usr/local/man
That's where man pages go on OpenBSD. Might apply to FreeBSD too; idk.
Signed-off-by: Lennart Jablonka <humm@ljabl.com>
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configs/openbsd.mk b/configs/openbsd.mk
@@ -1,7 +1,7 @@
# install locations
-PREFIX = /usr/local/
+PREFIX = /usr/local
BINDIR = $(PREFIX)/bin
-MANDIR = $(PREFIX)/share/man
+MANDIR = $(PREFIX)/man
SRCDIR = $(PREFIX)/src
STDLIB = $(SRCDIR)/hare/stdlib