summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJoerg Jung <jung@cvs.openbsd.org>2015-10-26 10:08:16 +0000
committerJoerg Jung <jung@cvs.openbsd.org>2015-10-26 10:08:16 +0000
commitdf03a21418dab281be1c9d44eb299096dadb1398 (patch)
treec0e3338ee60e073861317e6e871a59f6741ec081 /usr.bin
parent4b86387315e97ad077e3d264a3c475018c0e98bf (diff)
remove util.h include and -lutil after pidfile removal
ok deraadt
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/usbhidaction/Makefile4
-rw-r--r--usr.bin/usbhidaction/usbhidaction.c3
2 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/usbhidaction/Makefile b/usr.bin/usbhidaction/Makefile
index 1ce2fe8b7ad..c23b5320cae 100644
--- a/usr.bin/usbhidaction/Makefile
+++ b/usr.bin/usbhidaction/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.1 2002/05/10 00:09:17 nate Exp $
+# $OpenBSD: Makefile,v 1.2 2015/10/26 10:08:14 jung Exp $
# $NetBSD: Makefile,v 1.4 2002/02/02 16:54:26 veego Exp $
PROG= usbhidaction
SRCS= usbhidaction.c
-LDADD+= -lusbhid -lutil
+LDADD+= -lusbhid
DPADD+= ${LIBUSBHID} ${LIBUTIL}
.include <bsd.prog.mk>
diff --git a/usr.bin/usbhidaction/usbhidaction.c b/usr.bin/usbhidaction/usbhidaction.c
index 4b61105359b..704d4e45dac 100644
--- a/usr.bin/usbhidaction/usbhidaction.c
+++ b/usr.bin/usbhidaction/usbhidaction.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: usbhidaction.c,v 1.20 2015/10/26 09:57:55 deraadt Exp $ */
+/* $OpenBSD: usbhidaction.c,v 1.21 2015/10/26 10:08:14 jung Exp $ */
/* $NetBSD: usbhidaction.c,v 1.7 2002/01/18 14:38:59 augustss Exp $ */
/*
@@ -43,7 +43,6 @@
#include <dev/usb/usb.h>
#include <dev/usb/usbhid.h>
#include <usbhid.h>
-#include <util.h>
#include <syslog.h>
#include <signal.h>
#include <paths.h>