summaryrefslogtreecommitdiff
path: root/net/icsi-finger
diff options
context:
space:
mode:
authordholland <dholland>2012-03-05 04:18:14 +0000
committerdholland <dholland>2012-03-05 04:18:14 +0000
commit375ff965305761cbd3f89ea88954721f427e9350 (patch)
tree5659369e7c4e25a1b68f9d9d88e2c2dc6d8690f5 /net/icsi-finger
parentd3917dd37de4bce4f37550f4d750bc8408c60997 (diff)
downloadpkgsrc-375ff965305761cbd3f89ea88954721f427e9350.tar.gz
Pass ${INSTALL_MAN} and ${INSTALL_SCRIPT} to make install invocations.
Otherwise the package's own ${INSTALL} logic is used, which leads to running /usr/bin/install on systems where it doesn't work, like Solaris and Irix.
Diffstat (limited to 'net/icsi-finger')
-rw-r--r--net/icsi-finger/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/net/icsi-finger/Makefile b/net/icsi-finger/Makefile
index 4dcdc69f6e7..8aeecb351a4 100644
--- a/net/icsi-finger/Makefile
+++ b/net/icsi-finger/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2011/11/23 16:25:07 is Exp $
+# $NetBSD: Makefile,v 1.22 2012/03/05 04:18:14 dholland Exp $
#
DISTNAME= icsi-finger-1.0.29
@@ -68,7 +68,9 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/support/rc.local-add ${XMPLD}
${INSTALL_DATA} ${WRKSRC}/support/services-add ${XMPLD}
${INSTALL_DATA} ${WRKSRC}/support/inetd.conf-add ${XMPLD}
- (cd ${WRKSRC}/src; ${MAKE} install.man DESTDIR=${DESTDIR})
- (cd ${WRKSRC}/src; ${MAKE} TARGETD=${XMPLDT} install.targets)
+ (cd ${WRKSRC}/src; ${MAKE} install.man DESTDIR=${DESTDIR} \
+ INSTALLMAN=${INSTALL_MAN:Q})
+ (cd ${WRKSRC}/src; ${MAKE} TARGETD=${XMPLDT} install.targets \
+ INSTALLSCRIPT=${INSTALL_SCRIPT:Q})
.include "../../mk/bsd.pkg.mk"