diff options
author | reed <reed@pkgsrc.org> | 2005-12-27 21:24:26 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-12-27 21:24:26 +0000 |
commit | f00c502825b9866c6600181caf779c2640b65a35 (patch) | |
tree | 2443ad6f34b852b39116b3f1ca0eecedd7da2d54 | |
parent | 9cfb98bc7f920ef8912b119b3ee71af76e11ae6b (diff) | |
download | pkgsrc-f00c502825b9866c6600181caf779c2640b65a35.tar.gz |
Use PKGMANDIR instead of hard-coded "man".
-rw-r--r-- | net/md-whois/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/md-whois/Makefile b/net/md-whois/Makefile index 61b4f39119c..3bd5cfc34ec 100644 --- a/net/md-whois/Makefile +++ b/net/md-whois/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/11/03 13:43:15 rillig Exp $ +# $NetBSD: Makefile,v 1.18 2005/12/27 21:24:26 reed Exp $ # # todo: set location of [md-]whois.conf and fix in man page too # todo: build and install the po/ files and add to PLIST @@ -19,10 +19,10 @@ VERSION= 4.7.2 WRKSRC= ${WRKDIR}/whois-${VERSION} USE_TOOLS+= gmake perl -INSTALLATION_DIRS+= bin man/man1 +INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/whois ${PREFIX}/bin/md-whois - ${INSTALL_MAN} ${WRKSRC}/whois.1 ${PREFIX}/man/man1/md-whois.1 + ${INSTALL_MAN} ${WRKSRC}/whois.1 ${PREFIX}/${PKGMANDIR}/man1/md-whois.1 .include "../../mk/bsd.pkg.mk" |