svn commit: r336169 - head/share/mk

Renato Botelho garga at FreeBSD.org
Tue Jul 10 11:33:38 UTC 2018


Author: garga (ports committer)
Date: Tue Jul 10 11:33:37 2018
New Revision: 336169
URL: https://svnweb.freebsd.org/changeset/base/336169

Log:
  A direct call to echo was intruduced in r333407, which made messages
  to be displayed when make is called with -s.  Replace it by ${ECHO}.
  
  Reviewed by:	brd, bdrewery
  Approved by:	brd, bdrewery
  Sponsored by:	Rubicon Communications, LLC (Netgate)
  Differential Revision:	https://reviews.freebsd.org/D16195

Modified:
  head/share/mk/bsd.files.mk

Modified: head/share/mk/bsd.files.mk
==============================================================================
--- head/share/mk/bsd.files.mk	Tue Jul 10 10:50:43 2018	(r336168)
+++ head/share/mk/bsd.files.mk	Tue Jul 10 11:33:37 2018	(r336169)
@@ -80,7 +80,7 @@ _${group}FILES+= ${file}
 
 
 installdirs-${group}:
-	@echo installing dirs ${group}DIR ${${group}DIR}
+	@${ECHO} installing dirs ${group}DIR ${${group}DIR}
 .for dir in ${${group}DIR}
 .if defined(NO_ROOT)
 	${INSTALL} ${${group}TAG_ARGS} -d ${DESTDIR}${dir}


More information about the svn-src-all mailing list