pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/comms/dfu-util
Module Name: pkgsrc
Committed By: sevan
Date: Sat Dec 3 13:02:22 UTC 2016
Modified Files:
pkgsrc/comms/dfu-util: Makefile
Log Message:
Correct the if statement to AND, not OR.
Unbreak builds on FreeBSD & DragonFly BSD
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/comms/dfu-util/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/comms/dfu-util/Makefile
diff -u pkgsrc/comms/dfu-util/Makefile:1.1 pkgsrc/comms/dfu-util/Makefile:1.2
--- pkgsrc/comms/dfu-util/Makefile:1.1 Sat Dec 3 03:26:07 2016
+++ pkgsrc/comms/dfu-util/Makefile Sat Dec 3 13:02:22 2016
@@ -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
Home |
Main Index |
Thread Index |
Old Index