diff options
author | madpilot <madpilot@FreeBSD.org> | 2012-11-01 19:33:39 +0800 |
---|---|---|
committer | madpilot <madpilot@FreeBSD.org> | 2012-11-01 19:33:39 +0800 |
commit | 13322f5aa894c7c6b2e2a398f70720777bd15796 (patch) | |
tree | 54e4a3888eea6a580856e892064a3f85203c0f63 /emulators | |
parent | bb48887369e366bd11d655e123fc5725a544fd01 (diff) | |
download | freebsd-ports-gnome-13322f5aa894c7c6b2e2a398f70720777bd15796.tar.gz freebsd-ports-gnome-13322f5aa894c7c6b2e2a398f70720777bd15796.tar.zst freebsd-ports-gnome-13322f5aa894c7c6b2e2a398f70720777bd15796.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 |