diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-07 09:13:46 +0000 |
commit | 2829e658f2ba62cb77f3f151f468ec8de1549bd5 (patch) | |
tree | 77b9cef42b625156081609e43af1544d569620be /net/djbdns | |
parent | 5997a7db2d5af7de47f411825619ffc3689f1ce2 (diff) | |
download | pkgsrc-2829e658f2ba62cb77f3f151f468ec8de1549bd5.tar.gz |
Mechanically replaced man/* with ${PKGMANDIR}/* in the definition of
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with
${PREFIX}/${PKGMANDIR}.
Fixes PR 35265, although I did not use the patch provided therein.
Diffstat (limited to 'net/djbdns')
-rw-r--r-- | net/djbdns/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/djbdns/Makefile b/net/djbdns/Makefile index ac3d9af3ae4..f6638c8b691 100644 --- a/net/djbdns/Makefile +++ b/net/djbdns/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.52 2006/07/27 18:48:03 jlam Exp $ +# $NetBSD: Makefile,v 1.53 2007/01/07 09:14:02 rillig Exp $ DISTNAME= djbdns-1.05 PKGREVISION= 7 @@ -26,11 +26,11 @@ MAKE_DIRS+= ${PKG_SYSCONFDIR} CONF_FILES+= ${EGDIR}/dnsroots.global ${PKG_SYSCONFDIR}/dnsroots.global PLIST_SRC= ${PKGDIR}/PLIST -INSTALLATION_DIRS= bin man man/man1 man/man5 man/man8 share/examples/djbdns +INSTALLATION_DIRS= bin man ${PKGMANDIR}/man1 ${PKGMANDIR}/man5 ${PKGMANDIR}/man8 share/examples/djbdns post-install: cd ${WRKDIR}/*-man; for i in 1 5 8; do \ - for j in *.$$i; do ${INSTALL_MAN} $$j ${PREFIX}/man/man$$i; done \ + for j in *.$$i; do ${INSTALL_MAN} $$j ${PREFIX}/${PKGMANDIR}/man$$i; done \ done .include "../../mk/djbware.mk" |