svn commit: r306797 - head/emulators/bochs

Guido Falsi madpilot at FreeBSD.org
Thu Nov 1 11:33:40 UTC 2012


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
 


More information about the svn-ports-head mailing list