From f911d1e0205ec21726093e309f2cf0cfd198712c Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Sat, 26 Sep 2020 16:49:52 +0200 Subject: [PATCH] Install man pages in @mandir@ --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 8515939..c66c309 100644 --- a/Makefile.in +++ b/Makefile.in @@ -32,8 +32,8 @@ clean: install: bgpq3 if test ! -d @bindir@ ; then mkdir -p @bindir@ ; fi ${INSTALL} -c -s -m 755 bgpq3 @bindir@ - if test ! -d @prefix@/man/man8 ; then mkdir -p @prefix@/man/man8 ; fi - ${INSTALL} -m 644 bgpq3.8 @prefix@/man/man8 + if test ! -d @mandir@/man8 ; then mkdir -p @mandir@/man8 ; fi + ${INSTALL} -m 644 bgpq3.8 @mandir@/man8 depend: makedepend -- $(CFLAGS) -- $(SRCS)