From 13322f5aa894c7c6b2e2a398f70720777bd15796 Mon Sep 17 00:00:00 2001 From: madpilot Date: Thu, 1 Nov 2012 11:33:39 +0000 Subject: - Replace usage of !${PORT_OPTIONS:MFOO} with empty(PORT_OPTIONS:MFOO) I did not notice this before the previous commit. Feature safe: yes --- emulators/bochs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'emulators') 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 -.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 -- cgit