svn commit: r333274 - head/share/mk

Sean Bruno sbruno at FreeBSD.org
Sat May 5 18:39:55 UTC 2018


Author: sbruno
Date: Sat May  5 18:39:54 2018
New Revision: 333274
URL: https://svnweb.freebsd.org/changeset/base/333274

Log:
  Remove accidentally committed debug statement that induced the following
  warning:
  
  make[3]: "/usr/src/share/mk/bsd.prog.mk" line 274: warning: duplicate
  script for target "_scriptsinstall" ignored
  make[3]: "/usr/src/share/mk/bsd.prog.mk" line 274: warning: using
  previous script for "_scriptsinstall" defined here
  
  Reviewed by:	kevans

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

Modified: head/share/mk/bsd.prog.mk
==============================================================================
--- head/share/mk/bsd.prog.mk	Sat May  5 16:00:02 2018	(r333273)
+++ head/share/mk/bsd.prog.mk	Sat May  5 18:39:54 2018	(r333274)
@@ -271,7 +271,6 @@ SCRIPTSGRP_${script:T}?=	${SCRIPTSGRP}
 SCRIPTSMODE_${script:T}?=	${SCRIPTSMODE}
 STAGE_AS_${script:T}=		${SCRIPTSDIR_${script:T}}/${SCRIPTSNAME_${script:T}}
 _scriptsinstall: _SCRIPTSINS_${script:T}
-	echo ">SFD>F>DF YES"
 _SCRIPTSINS_${script:T}: ${script}
 	${INSTALL} ${TAG_ARGS} -o ${SCRIPTSOWN_${.ALLSRC:T}} \
 	    -g ${SCRIPTSGRP_${.ALLSRC:T}} -m ${SCRIPTSMODE_${.ALLSRC:T}} \


More information about the svn-src-all mailing list