diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-05-01 03:36:57 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-05-01 03:36:57 +0000 |
commit | 3f585da798891f0e4c06750ff05c840cfee54e7c (patch) | |
tree | 36fa88ab3405d598bd37e636d79d162b0cd046f2 | |
parent | Committed wrong version. Actually STAGE. (diff) |
Fix a few stragglers.
Notes
Notes:
svn path=/head/; revision=352718
-rw-r--r-- | security/avcheck/Makefile | 4 | ||||
-rw-r--r-- | security/ipfilter2dshield/Makefile | 2 | ||||
-rw-r--r-- | security/makepasswd/Makefile | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/security/avcheck/Makefile b/security/avcheck/Makefile index a39e2d5ef4a4..a0c72b3b4af1 100644 --- a/security/avcheck/Makefile +++ b/security/avcheck/Makefile @@ -24,9 +24,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/sbin/ .endfor -.for i in ${MAN1} - ${INSTALL_MAN} ${WRKSRC}/${i} ${STAGEDIR}${MANPREFIX}/man/man1/ -.endfor + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1/ ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} diff --git a/security/ipfilter2dshield/Makefile b/security/ipfilter2dshield/Makefile index b7ccfd7923bb..139d162f5002 100644 --- a/security/ipfilter2dshield/Makefile +++ b/security/ipfilter2dshield/Makefile @@ -31,7 +31,7 @@ pre-install: pkg-message > ${PKGMESSAGE} do-install: - @${MKDIR}${ETCDIR} + @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKDIR}/${DISTNAME} \ ${STAGEDIR}${ETCDIR}/${DISTNAME}.sample ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 760 ${WRKDIR}/${DISTNAME} ${PREFIX}/sbin diff --git a/security/makepasswd/Makefile b/security/makepasswd/Makefile index 3eba16437560..6645a10ff787 100644 --- a/security/makepasswd/Makefile +++ b/security/makepasswd/Makefile @@ -37,7 +37,7 @@ post-patch: do-install: ${INSTALL_SCRIPT} ${WRKSRC}/makepasswd ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${STAGEDIR}${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${DOCSDIR} .for file in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR} |