sysutils/screen: Fix NOSOCKETDIR option

The NOSOCKETDIR option is reversed. Fix it.

Reported by:	leres
MFH:		2022Q2
This commit is contained in:
Cy Schubert 2022-05-27 10:46:03 -07:00
parent ba379c4e93
commit dcae0ddeb2

View file

@ -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