1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Replace usage of !${PORT_OPTIONS:MFOO} with empty(PORT_OPTIONS:MFOO)

I did not notice this before the previous commit.

Feature safe:	yes
This commit is contained in:
Guido Falsi 2012-11-01 11:33:39 +00:00
parent f34779304b
commit baa342ccf2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=306797

View File

@ -94,7 +94,7 @@ SUB_FILES= pkg-message
.include <bsd.port.options.mk>
.if !${PORT_OPTIONS:MTERM} && !${PORT_OPTIONS:MWX} && !${PORT_OPTIONS:MX11}
.if empty(PORT_OPTIONS:MTERM) && empty(PORT_OPTIONS:MWX) && empty(PORT_OPTIONS:MX11)
CONFIGURE_ARGS+=--with-nogui
.endif