From 8944821ba8f0f0177b7a7559caaa9115657dd4e0 Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Mon, 28 Sep 2020 11:07:10 +0200 Subject: [PATCH] Added mandb update to makefile --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index c47ae2c..d996be6 100644 --- a/makefile +++ b/makefile @@ -20,7 +20,9 @@ install: @echo "Installing tncattach..." chmod a+x tncattach cp ./tncattach /usr/local/sbin/ - install -m 644 -o root -g root tncattach.8 /usr/local/man/man8 + mkdir -p /usr/local/man/man8 + install -m 644 -o root -g root tncattach.8 /usr/local/man/man8/tncattach.8 + mandb -f /usr/local/man/man8/tncattach.8 uninstall: @echo "Uninstalling tncattach"