Since r284198, ls(1) just always depends libxo(3), not only in case of

MK_LS_COLORS or !RELEASE_CRUNCH.
This commit is contained in:
Marius Strobl 2015-07-12 18:40:31 +00:00
parent 969fc29e0b
commit 6bee009f79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285425

View File

@ -5,12 +5,12 @@
PROG= ls
SRCS= cmp.c ls.c print.c util.c
LIBADD= util
LIBADD= util xo
.if !defined(RELEASE_CRUNCH) && \
${MK_LS_COLORS} != no
CFLAGS+= -DCOLORLS
LIBADD+= termcapw xo
LIBADD+= termcapw
.endif
.include <bsd.prog.mk>