aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2012-11-01 11:33:39 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2012-11-01 11:33:39 +0000
commitbaa342ccf2cf7d49a5bd16285aef3e597306f142 (patch)
tree54e4a3888eea6a580856e892064a3f85203c0f63 /emulators
parentf34779304b7ad090f618594c813e974b3c823719 (diff)
downloadports-baa342ccf2cf7d49a5bd16285aef3e597306f142.tar.gz
ports-baa342ccf2cf7d49a5bd16285aef3e597306f142.zip
- Replace usage of !${PORT_OPTIONS:MFOO} with empty(PORT_OPTIONS:MFOO)
I did not notice this before the previous commit. Feature safe: yes
Notes
Notes: svn path=/head/; revision=306797
Diffstat (limited to 'emulators')
-rw-r--r--emulators/bochs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/bochs/Makefile b/emulators/bochs/Makefile
index d5ffd5f83389..396208053389 100644
--- a/emulators/bochs/Makefile
+++ b/emulators/bochs/Makefile
@@ -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