git: dcae0ddeb218 - main - sysutils/screen: Fix NOSOCKETDIR option
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 27 May 2022 20:47:37 UTC
The branch main has been updated by cy: URL: https://cgit.FreeBSD.org/ports/commit/?id=dcae0ddeb218bb8ba51d3dcc6fe43f8a0f88bb35 commit dcae0ddeb218bb8ba51d3dcc6fe43f8a0f88bb35 Author: Cy Schubert <cy@FreeBSD.org> AuthorDate: 2022-05-27 17:46:03 +0000 Commit: Cy Schubert <cy@FreeBSD.org> CommitDate: 2022-05-27 20:47:29 +0000 sysutils/screen: Fix NOSOCKETDIR option The NOSOCKETDIR option is reversed. Fix it. Reported by: leres MFH: 2022Q2 --- sysutils/screen/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index 34625ae2bf9d..28b433032194 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -2,7 +2,7 @@ PORTNAME= screen PORTVERSION= 4.9.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils MASTER_SITES= GNU \ ftp://ftp.gnu.org/gnu/screen/ \ @@ -78,7 +78,7 @@ CFLAGS+= -DCOLORS256 CFLAGS+= -DNONETHACK .endif -.if ! ${PORT_OPTIONS:MNOSOCKETDIR} +.if ${PORT_OPTIONS:MNOSOCKETDIR} CONFIGURE_ARGS+= --disable-socket-dir .endif