diff options
author | joerg <joerg@pkgsrc.org> | 2010-01-27 22:05:28 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-01-27 22:05:28 +0000 |
commit | aefc21d5b5bf5c688266b2923175e6a57dd6a497 (patch) | |
tree | cda897cdaf847e4059a16bcfa8098a9b15a8beff /security/dsniff | |
parent | ee255fb0ce79495b1b2593da914ffc1e8ec24f77 (diff) | |
download | pkgsrc-aefc21d5b5bf5c688266b2923175e6a57dd6a497.tar.gz |
DESTDIR support
Diffstat (limited to 'security/dsniff')
-rw-r--r-- | security/dsniff/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/dsniff/Makefile b/security/dsniff/Makefile index 4e68373950d..95aeacbb3ba 100644 --- a/security/dsniff/Makefile +++ b/security/dsniff/Makefile @@ -1,4 +1,6 @@ -# $NetBSD: Makefile,v 1.31 2009/05/09 16:33:04 adrianp Exp $ +# $NetBSD: Makefile,v 1.32 2010/01/27 22:10:07 joerg Exp $ + +PKG_DESTDIR_SUPPORT= user-destdir .include "Makefile.common" @@ -12,8 +14,8 @@ BUILD_TARGET= libmissing.a webspy INSTALLATION_DIRS+= sbin ${PKGMANDIR}/man8 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/webspy ${PREFIX}/sbin - ${INSTALL_MAN} ${WRKSRC}/webspy.8 ${PREFIX}/${PKGMANDIR}/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/webspy ${DESTDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/webspy.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8 BUILDLINK_DEPMETHOD.libXt?= build |