From 4c4ed78952ab60ebc3d8fe7ea6dff71ff4a2826f Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 19 Jun 2024 11:31:04 +1200 Subject: [PATCH] makefile: fix man page installation --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3327852..25e82a6 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ clean: install: esv install -Dm755 esv ${DESTDIR}${PREFIX}/bin/esv - install -Dm644 esv.1 ${DESTDIR}${MANPREFIX}/man1 - install -Dm644 esv.conf.5 ${DESTDIR}${MANPREFIX}/man5 + install -Dm644 esv.1 ${DESTDIR}${MANPREFIX}/man1/esv.1 + install -Dm644 esv.conf.5 ${DESTDIR}${MANPREFIX}/man5/esv.conf.5 .PHONY: all clean install