svn commit: r315759 - head/graphics/sane-backends

William Grzybowski wg at FreeBSD.org
Mon Apr 8 12:26:47 UTC 2013


Author: wg
Date: Mon Apr  8 12:26:46 2013
New Revision: 315759
URL: http://svnweb.freebsd.org/changeset/ports/315759

Log:
  - Fix inverted logic for USB option
  
  PR:		ports/177621
  Submitted by:	Eric Krausser <eric at krausser-edv.de>
  Approved by:	portmgr (bapt), culot (mentor)

Modified:
  head/graphics/sane-backends/Makefile

Modified: head/graphics/sane-backends/Makefile
==============================================================================
--- head/graphics/sane-backends/Makefile	Mon Apr  8 12:12:46 2013	(r315758)
+++ head/graphics/sane-backends/Makefile	Mon Apr  8 12:26:46 2013	(r315759)
@@ -53,7 +53,7 @@ LDFLAGS+=	-L${LOCALBASE}/lib
 .include "Makefile.man"
 .include <bsd.port.pre.mk>
 
-.if ${PORT_OPTIONS:MUSB}
+.if empty(PORT_OPTIONS:MUSB)
 CONFIGURE_ARGS+=	--disable-libusb
 .endif
 


More information about the svn-ports-all mailing list