From 60b4b764ac0663ab73653c7cb9a7cc83cf1ebd04 Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 15 Jul 2019 07:35:46 +0000 Subject: [PATCH] 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. --- bin/ls/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/ls/Makefile b/bin/ls/Makefile index d5ae58da2b3..b4076d3a30a 100644 --- a/bin/ls/Makefile +++ b/bin/ls/Makefile @@ -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 -- 2.45.0