diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-25 11:53:43 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-02-25 11:53:43 +0000 |
commit | cb84554011e8bc869b40bfe75c81aa00288e878e (patch) | |
tree | c5c6f4daa4165778e9e2f24fcb93628d7985f889 | |
parent | 3b6f25f548871de29f4d3b0a86ea0a450f6d1d2b (diff) |
Support staging
Notes
Notes:
svn path=/head/; revision=345971
-rw-r--r-- | security/pktsuckers/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/security/pktsuckers/Makefile b/security/pktsuckers/Makefile index 3f561e6a5263..1cbc0ddb88d5 100644 --- a/security/pktsuckers/Makefile +++ b/security/pktsuckers/Makefile @@ -12,14 +12,12 @@ COMMENT= Log contents of unwanted UDP packets and TCP connections PLIST_FILES= libexec/tcpsuck libexec/udpsuck -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e \ 's|^void main|int main|' ${WRKSRC}/tcpsuck.c ${WRKSRC}/udpsuck.c do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/tcpsuck ${PREFIX}/libexec - ${INSTALL_PROGRAM} ${WRKSRC}/udpsuck ${PREFIX}/libexec - @${CAT} ${PKGMESSAGE} + ${INSTALL_PROGRAM} ${WRKSRC}/tcpsuck ${STAGEDIR}${PREFIX}/libexec + ${INSTALL_PROGRAM} ${WRKSRC}/udpsuck ${STAGEDIR}${PREFIX}/libexec .include <bsd.port.mk> |