summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorsevan <sevan>2016-12-03 13:02:22 +0000
committersevan <sevan>2016-12-03 13:02:22 +0000
commita9f46f471006913f0728f242238786dd31fb3273 (patch)
tree69f046b1128738088d40f0c7106a80d3d5d1c6cd /comms
parent4e6a638e809a2d3abcc12990d2d363b7eeceb2ed (diff)
downloadpkgsrc-a9f46f471006913f0728f242238786dd31fb3273.tar.gz
Correct the if statement to AND, not OR.
Unbreak builds on FreeBSD & DragonFly BSD
Diffstat (limited to 'comms')
-rw-r--r--comms/dfu-util/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/comms/dfu-util/Makefile b/comms/dfu-util/Makefile
index 87b391f69a8..6e49888931e 100644
--- a/comms/dfu-util/Makefile
+++ b/comms/dfu-util/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2016/12/03 03:26:07 sevan Exp $
+# $NetBSD: Makefile,v 1.2 2016/12/03 13:02:22 sevan Exp $
#
DISTNAME= dfu-util-0.9
@@ -19,7 +19,7 @@ CONFIGURE_ARGS+= CPPFLAGS="${CPPFLAGS}"
.include "../../mk/bsd.prefs.mk"
-.if ${OPSYS} != "FreeBSD" || ${OPSYS} != "DragonFly"
+.if ${OPSYS} != "FreeBSD" && ${OPSYS} != "DragonFly"
BUILDLINK_TRANSFORM+= l:usb:usb-1.0
.endif