diff options
author | reed <reed@pkgsrc.org> | 2005-12-27 17:37:27 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2005-12-27 17:37:27 +0000 |
commit | e946b21109120db76079affc4e31056dd3ac0b6f (patch) | |
tree | 6b36b226f674f6126be064b0337e99a183f938bb /net/gethost/Makefile | |
parent | 6637a0cc5ae58e81d77d5ff20316e810282eed97 (diff) | |
download | pkgsrc-e946b21109120db76079affc4e31056dd3ac0b6f.tar.gz |
Install man page to PKGMANDIR instead of hard-coded "man".
Diffstat (limited to 'net/gethost/Makefile')
-rw-r--r-- | net/gethost/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/gethost/Makefile b/net/gethost/Makefile index 632a4c37aac..633e62d2720 100644 --- a/net/gethost/Makefile +++ b/net/gethost/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2004/12/03 15:15:05 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2005/12/27 17:37:27 reed Exp $ DISTNAME= gethost-0.03 CATEGORIES= net @@ -9,11 +9,11 @@ HOMEPAGE= http://www.reedmedia.net/software/gethost/ COMMENT= Hostname and IP resolver for testing /etc/hosts and nsswitch.conf PKG_INSTALLATION_TYPES= overwrite pkgviews -INSTALLATION_DIRS= bin man/man1 +INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 BUILD_TARGET= gethost do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gethost ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/gethost.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/gethost.1 ${PREFIX}/${PKGMANDIR}/man1 .include "../../mk/bsd.pkg.mk" |