svn commit: r285425 - head/bin/ls

Marius Strobl marius at FreeBSD.org
Sun Jul 12 18:40:32 UTC 2015


Author: marius
Date: Sun Jul 12 18:40:31 2015
New Revision: 285425
URL: https://svnweb.freebsd.org/changeset/base/285425

Log:
  Since r284198, ls(1) just always depends libxo(3), not only in case of
  MK_LS_COLORS or !RELEASE_CRUNCH.

Modified:
  head/bin/ls/Makefile

Modified: head/bin/ls/Makefile
==============================================================================
--- head/bin/ls/Makefile	Sun Jul 12 18:38:17 2015	(r285424)
+++ head/bin/ls/Makefile	Sun Jul 12 18:40:31 2015	(r285425)
@@ -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>


More information about the svn-src-all mailing list