summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2019-11-15 00:06:47 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2019-11-15 00:06:47 +0000
commitc899ee4690ae901d20c851085962f42a15edfe42 (patch)
treee65f62905893f5239fabb1a3341f53b061415bd8 /usr.bin
parentcac7b0a68aabbf9cb6325e43c357232bb443c077 (diff)
libusb was renamed to libusbhid in 2001 but the old DPADD var name was
kept. Rename LIBUSB to LIBUSBHID as there is only one LIBUSB use and many more attempts to refer to LIBUSBHID.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/usbhidctl/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/usbhidctl/Makefile b/usr.bin/usbhidctl/Makefile
index 2ddba645f55..a95593bfc9c 100644
--- a/usr.bin/usbhidctl/Makefile
+++ b/usr.bin/usbhidctl/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.2 2001/12/30 07:10:42 pvalchev Exp $
+# $OpenBSD: Makefile,v 1.3 2019/11/15 00:06:46 jsg Exp $
# $NetBSD: Makefile,v 1.4 1999/05/11 21:02:25 augustss Exp $
PROG= usbhidctl
SRCS= usbhid.c
LDADD+= -lusbhid
-DPADD+= ${LIBUSB}
+DPADD+= ${LIBUSBHID}
.include <bsd.prog.mk>