Date: Mon, 15 Jul 2019 07:35:47 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r349990 - head/bin/ls Message-ID: <201907150735.x6F7ZlXU059827@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907150735.x6F7ZlXU059827>