Now that we have MK_LS_COLORS, we don't need RELEASE_CRUNCH check here.

The RELEASE_CRUNCH check is redundant here. We don't need it for releases
anymore, and picobsd can control this more directly without making it a special
case.
This commit is contained in:
Warner Losh 2019-07-15 07:35:46 +00:00
parent a85b7f125b
commit ab152d0263
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=349990

View File

@ -8,8 +8,7 @@ PROG= ls
SRCS= cmp.c ls.c print.c util.c
LIBADD= util
.if !defined(RELEASE_CRUNCH) && \
${MK_LS_COLORS} != no
.if ${MK_LS_COLORS} != no
CFLAGS+= -DCOLORLS
LIBADD+= termcapw
.endif