aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pcvt
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2001-07-30 11:38:35 +0000
committerBruce Evans <bde@FreeBSD.org>2001-07-30 11:38:35 +0000
commit6ab657cc56b904a82099e3e2b02c95d947428092 (patch)
treeb88e3919e3105bbdb59171d6e7d14a8a9e08e70c /usr.sbin/pcvt
parent07679c2d282cab94a307cd82debfe02da93a7189 (diff)
downloadsrc-6ab657cc56b904a82099e3e2b02c95d947428092.tar.gz
src-6ab657cc56b904a82099e3e2b02c95d947428092.zip
Fixed bitrot in DPADD in previous commit. The previous commit changed
LDADD to link to a correct copy of libkeycap but didn't change DPADD to match.
Notes
Notes: svn path=/head/; revision=80631
Diffstat (limited to 'usr.sbin/pcvt')
-rw-r--r--usr.sbin/pcvt/kcon/Makefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/usr.sbin/pcvt/kcon/Makefile b/usr.sbin/pcvt/kcon/Makefile
index 4e49af9a28ce..61c273f272f8 100644
--- a/usr.sbin/pcvt/kcon/Makefile
+++ b/usr.sbin/pcvt/kcon/Makefile
@@ -2,16 +2,8 @@
PROG= kcon
DEVICE= /dev/ttyv0
-
CFLAGS+= -I${.CURDIR}/../keycap -DKEYB_DEVICE=\"${DEVICE}\"
-
DPADD= ${LIBKEYCAP}
LDADD= -lkeycap
-.if exists(${.OBJDIR}/../keycap)
-LIBKEYCAP= ${.OBJDIR}/../keycap/libkeycap.a
-.else
-LIBKEYCAP= ${.CURDIR}/../keycap/libkeycap.a
-.endif
-
.include <bsd.prog.mk>