diff options
author | wg <wg@FreeBSD.org> | 2013-04-08 20:26:46 +0800 |
---|---|---|
committer | wg <wg@FreeBSD.org> | 2013-04-08 20:26:46 +0800 |
commit | 36af030e890c42b9078a8cee872e42a44fad50aa (patch) | |
tree | f4b29f06dd0e017ba8c42ad764bcc138f7b9efe7 /graphics | |
parent | 9434f0d102dc8cead2e88da51553ea66e3e942dd (diff) | |
download | freebsd-ports-gnome-36af030e890c42b9078a8cee872e42a44fad50aa.tar.gz freebsd-ports-gnome-36af030e890c42b9078a8cee872e42a44fad50aa.tar.zst freebsd-ports-gnome-36af030e890c42b9078a8cee872e42a44fad50aa.zip |
- Fix inverted logic for USB option
PR: ports/177621
Submitted by: Eric Krausser <eric@krausser-edv.de>
Approved by: portmgr (bapt), culot (mentor)
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/sane-backends/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/sane-backends/Makefile b/graphics/sane-backends/Makefile index d95903c234d6..835fb9aa5946 100644 --- a/graphics/sane-backends/Makefile +++ b/graphics/sane-backends/Makefile @@ -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 |