aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/vi
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1994-09-11 22:01:45 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1994-09-11 22:01:45 +0000
commit16e99c53fbe019bdf2c49c995e077b6895c34e2d (patch)
treeb5d7a4da0b756d6e402d0c19286d792da70937c5 /usr.bin/vi
parent6897a8a75d2edb2529220cd89b8dc4fbf38aa6b3 (diff)
downloadsrc-16e99c53fbe019bdf2c49c995e077b6895c34e2d.tar.gz
src-16e99c53fbe019bdf2c49c995e077b6895c34e2d.zip
Change all references to LIBTERM and -ltermlib to LIBTERMCAP and -ltermcap
Notes
Notes: svn path=/head/; revision=2679
Diffstat (limited to 'usr.bin/vi')
-rw-r--r--usr.bin/vi/common/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/vi/common/Makefile b/usr.bin/vi/common/Makefile
index f5f2c2b3384c..3a28b442e449 100644
--- a/usr.bin/vi/common/Makefile
+++ b/usr.bin/vi/common/Makefile
@@ -10,8 +10,8 @@ LINKS+= ${BINDIR}/${VI} ${BINDIR}/view
MAN1= ${.CURDIR}/../USD.doc/vi.man/vi.1
CFLAGS+=-I. -I${.CURDIR}
-DPADD+= ${LIBCURSES} ${LIBTERM} ${LIBUTIL}
-LDADD+= -lcurses -ltermlib -lutil
+DPADD+= ${LIBCURSES} ${LIBTERMCAP} ${LIBUTIL}
+LDADD+= -lcurses -ltermcap -lutil
.PATH: ${.CURDIR}/../common ${.CURDIR}/../ex ${.CURDIR}/../sex \
${.CURDIR}/../vi ${.CURDIR}/../svi ${.CURDIR}/../xaw
@@ -90,7 +90,7 @@ tags::
warn:: ${SRCS}
-(cd ${.CURDIR} && gcc -Wall -O4 -DDEBUG \
- -Iobj -I. ${.ALLSRC} -lcurses -ltermlib 2>&1 | \
+ -Iobj -I. ${.ALLSRC} -lcurses -ltermcap 2>&1 | \
sed -e "/warning: .*sccsid.*defined but not used/d" \
-e "/warning: suggest parentheses around/d" \
-e "/In function /d" \