svn commit: r295227 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Thu Feb 4 01:08:43 UTC 2016


Author: bdrewery
Date: Thu Feb  4 01:08:42 2016
New Revision: 295227
URL: https://svnweb.freebsd.org/changeset/base/295227

Log:
  Stop hiding link install commands.
  
  This is no longer needed now that a .for loop is used rather
  than inline shell script.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/share/mk/bsd.incs.mk
  head/share/mk/bsd.links.mk

Modified: head/share/mk/bsd.incs.mk
==============================================================================
--- head/share/mk/bsd.incs.mk	Thu Feb  4 00:23:21 2016	(r295226)
+++ head/share/mk/bsd.incs.mk	Thu Feb  4 01:08:42 2016	(r295227)
@@ -80,7 +80,6 @@ _${group}INS: ${_${group}INCS}
 .if defined(INCSLINKS) && !empty(INCSLINKS)
 installincludes:
 .for s t in ${INCSLINKS}
-	@${ECHO} "$t -> $s" ; \
 	${INSTALL_SYMLINK} $s ${DESTDIR}$t
 .endfor
 .endif

Modified: head/share/mk/bsd.links.mk
==============================================================================
--- head/share/mk/bsd.links.mk	Thu Feb  4 00:23:21 2016	(r295226)
+++ head/share/mk/bsd.links.mk	Thu Feb  4 01:08:42 2016	(r295227)
@@ -8,10 +8,8 @@ afterinstall: _installlinks
 .ORDER: realinstall _installlinks
 _installlinks:
 .for s t in ${LINKS}
-	@${ECHO} "$t -> $s" ;\
 	${INSTALL_LINK} ${DESTDIR}$s ${DESTDIR}$t
 .endfor
 .for s t in ${SYMLINKS}
-	@${ECHO} "$t -> $s" ;\
 	${INSTALL_SYMLINK} $s ${DESTDIR}/$t
 .endfor


More information about the svn-src-head mailing list