summaryrefslogtreecommitdiff
path: root/lib/libedit
diff options
context:
space:
mode:
authorYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2019-01-15 01:54:01 +0000
committerYASUOKA Masahiko <yasuoka@cvs.openbsd.org>2019-01-15 01:54:01 +0000
commit0a1dbaab65cf546b7cb85fbb6980b9392da263d9 (patch)
treef7f2c5ef45296e7d6b2cc99b3a24e8b111d2403b /lib/libedit
parentdd180592a9149c30f45d9d1c4c863877a1864215 (diff)
Fix the inter-library dependency for libedit and libreadline.
Previously they tried to depend on libtermcap which actually doesn't exist in the objdir. ok jca
Diffstat (limited to 'lib/libedit')
-rw-r--r--lib/libedit/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libedit/Makefile b/lib/libedit/Makefile
index 0aea2d4ae31..92849611751 100644
--- a/lib/libedit/Makefile
+++ b/lib/libedit/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.31 2018/11/14 20:43:48 sthen Exp $
+# $OpenBSD: Makefile,v 1.32 2019/01/15 01:54:00 yasuoka Exp $
# $NetBSD: Makefile,v 1.41 2010/02/03 15:34:43 roy Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
@@ -11,8 +11,8 @@ SRCS = chared.c chartype.c common.c el.c eln.c emacs.c filecomplete.c \
MAN= editline.3 editrc.5 editline.7
-LDADD+= -L${BSDOBJDIR}/lib/libcurses -ltermcap
-DPADD+= ${LIBTERMCAP}
+LDADD+= -L${BSDOBJDIR}/lib/libcurses -lcurses
+DPADD+= ${LIBCURSES}
LIBEDITDIR?=${.CURDIR}