svn commit: r349990 - head/bin/ls
Warner Losh
imp at FreeBSD.org
Mon Jul 15 07:35:47 UTC 2019
Author: imp
Date: Mon Jul 15 07:35:46 2019
New Revision: 349990
URL: https://svnweb.freebsd.org/changeset/base/349990
Log:
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.
Modified:
head/bin/ls/Makefile
Modified: head/bin/ls/Makefile
==============================================================================
--- head/bin/ls/Makefile Sun Jul 14 21:44:18 2019 (r349989)
+++ head/bin/ls/Makefile Mon Jul 15 07:35:46 2019 (r349990)
@@ -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
More information about the svn-src-all
mailing list