Date: Thu, 1 Nov 2012 11:33:39 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306797 - head/emulators/bochs Message-ID: <201211011133.qA1BXdZE082128@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: madpilot Date: Thu Nov 1 11:33:39 2012 New Revision: 306797 URL: http://svn.freebsd.org/changeset/ports/306797 Log: - Replace usage of !${PORT_OPTIONS:MFOO} with empty(PORT_OPTIONS:MFOO) I did not notice this before the previous commit. Feature safe: yes Modified: head/emulators/bochs/Makefile Modified: head/emulators/bochs/Makefile ============================================================================== --- head/emulators/bochs/Makefile Thu Nov 1 11:33:35 2012 (r306796) +++ head/emulators/bochs/Makefile Thu Nov 1 11:33:39 2012 (r306797) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211011133.qA1BXdZE082128>