aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-06-05 19:34:31 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-06-05 19:34:31 +0000
commitecb7192ace2ef5bdcc504c50b521b16b366a4224 (patch)
tree7c217f6e0196a16c30cd00e5523bd11eae3c66eb /bin
parent579f4eb4cd43fee8f0187a256d34cdcb25931765 (diff)
downloadsrc-ecb7192ace2ef5bdcc504c50b521b16b366a4224.tar.gz
src-ecb7192ace2ef5bdcc504c50b521b16b366a4224.zip
Don't use ncurses, use termcap
Add DPADD
Notes
Notes: svn path=/head/; revision=61288
Diffstat (limited to 'bin')
-rw-r--r--bin/ls/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ls/Makefile b/bin/ls/Makefile
index c20c8feb59f4..86b91b4baf54 100644
--- a/bin/ls/Makefile
+++ b/bin/ls/Makefile
@@ -8,7 +8,8 @@ SRCS= cmp.c setflags.c ls.c print.c util.c
.if !defined(RELEASE_BUILD_FIXIT)
CFLAGS+= -DCOLORLS
-LDADD= -lncurses
+LDADD+= -ltermcap
+DPADD+= ${LIBTERMCAP}
.endif
.include <bsd.prog.mk>