diff options
author | Cy Schubert <cy@FreeBSD.org> | 2022-05-27 17:46:03 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2022-05-27 20:47:29 +0000 |
commit | dcae0ddeb218bb8ba51d3dcc6fe43f8a0f88bb35 (patch) | |
tree | 3e09a024c72ad1fe835e2278c8b9d9862e7b7a9d | |
parent | ba379c4e93e048928a24d297c216ab7b0cfd82f8 (diff) | |
download | ports-dcae0ddeb218bb8ba51d3dcc6fe43f8a0f88bb35.tar.gz ports-dcae0ddeb218bb8ba51d3dcc6fe43f8a0f88bb35.zip |
sysutils/screen: Fix NOSOCKETDIR option
The NOSOCKETDIR option is reversed. Fix it.
Reported by: leres
MFH: 2022Q2
-rw-r--r-- | sysutils/screen/Makefile | 4 |
1 files 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 |