From 697f63c47427bcca9115e74859ce4debe788fdc5 Mon Sep 17 00:00:00 2001 From: phillbush Date: Mon, 18 May 2020 23:00:29 -0300 Subject: [PATCH] Fixed makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8044579..8e58c75 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,9 @@ clean: install: all install -d ${DESTDIR}${PREFIX}/bin/ + install -d ${DESTDIR}${MANPREFIX}/man1/ install -m 755 ${PROG} ${DESTDIR}${PREFIX}/bin/ - install -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX} + install -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX}/man1/ uninstall: rm -f ${DESTDIR}/${PREFIX}/bin/${PROG} -- 2.20.1