diff options
author | Guido Falsi <madpilot@FreeBSD.org> | 2012-11-01 19:33:39 +0800 |
---|---|---|
committer | Guido Falsi <madpilot@FreeBSD.org> | 2012-11-01 19:33:39 +0800 |
commit | baa342ccf2cf7d49a5bd16285aef3e597306f142 (patch) | |
tree | 54e4a3888eea6a580856e892064a3f85203c0f63 /emulators | |
parent | f34779304b7ad090f618594c813e974b3c823719 (diff) | |
download | freebsd-ports-gnome-baa342ccf2cf7d49a5bd16285aef3e597306f142.tar.gz freebsd-ports-gnome-baa342ccf2cf7d49a5bd16285aef3e597306f142.tar.zst freebsd-ports-gnome-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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bochs/Makefile | 2 |
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 |