diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-22 16:57:31 +0100 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-22 17:52:31 +0100 |
commit | b5228942cd5f41e44b9bf5031552719bc481df11 (patch) | |
tree | 6a3881124a6dbd93808b0e71cbf6f7acd8d56f4b /net/hostapd-devel | |
parent | c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c (diff) | |
download | freebsd-ports-b5228942cd5f41e44b9bf5031552719bc481df11.zip |
net/hostapd-devel: Sanitize MANPREFIX
Approved by: portmgr (blanket)
Diffstat (limited to 'net/hostapd-devel')
-rw-r--r-- | net/hostapd-devel/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/hostapd-devel/Makefile b/net/hostapd-devel/Makefile index 85cf9c1dacda..e21b459d2b55 100644 --- a/net/hostapd-devel/Makefile +++ b/net/hostapd-devel/Makefile @@ -1,5 +1,6 @@ PORTNAME= hostapd PORTVERSION= ${COMMIT_DATE} +PORTREVISION= 1 CATEGORIES= net PKGNAMESUFFIX= -devel @@ -21,8 +22,8 @@ BUILD_WRKSRC= ${WRKSRC}/hostapd CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} -PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ - man/man8/hostapd.8.gz +PLIST_FILES= sbin/hostapd sbin/hostapd_cli share/man/man1/hostapd_cli.1.gz \ + share/man/man8/hostapd.8.gz .if !exists(/etc/rc.d/hostapd) USE_RC_SUBR= hostapd .endif @@ -38,8 +39,8 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hostapd/hostapd_cli \ ${STAGEDIR}${PREFIX}/sbin ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd_cli.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1 + ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_MAN} ${WRKSRC}/hostapd/hostapd.8 \ - ${STAGEDIR}${MANPREFIX}/man/man8 + ${STAGEDIR}${PREFIX}/share/man/man8 .include <bsd.port.mk> |