Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Jul 2015 18:40:32 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r285425 - head/bin/ls
Message-ID:  <201507121840.t6CIeWuq059576@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201507121840.t6CIeWuq059576>