Date: Mon, 22 Jan 2024 16:52:42 GMT From: Muhammad Moinur Rahman <bofh@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: c0d016fcfcbd - main - net/hostapd: Sanitize MANPREFIX Message-ID: <202401221652.40MGqgTA053216@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c commit c0d016fcfcbd8a7a2769aca2075ba6df0f1f069c Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2024-01-22 15:56:39 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2024-01-22 16:52:30 +0000 net/hostapd: Sanitize MANPREFIX Approved by: portmgr (blanket) --- net/hostapd/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net/hostapd/Makefile b/net/hostapd/Makefile index e4951adea292..4ff64eacad26 100644 --- a/net/hostapd/Makefile +++ b/net/hostapd/Makefile @@ -1,6 +1,6 @@ PORTNAME= hostapd PORTVERSION= 2.10 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= net MASTER_SITES= https://w1.fi/releases/ @@ -16,8 +16,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 @@ -33,8 +33,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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401221652.40MGqgTA053216>