svn commit: r355582 - head/share/mk

Alex Richardson arichardson at FreeBSD.org
Tue Dec 10 12:12:48 UTC 2019


Author: arichardson
Date: Tue Dec 10 12:12:48 2019
New Revision: 355582
URL: https://svnweb.freebsd.org/changeset/base/355582

Log:
  Use ${.ALLSRC:Ninstalldirs-*} instead of assuming order of .ALLSRC
  
  This is a follow-up to https://reviews.freebsd.org/D22382
  
  Suggested By:	sjg

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

Modified: head/share/mk/bsd.files.mk
==============================================================================
--- head/share/mk/bsd.files.mk	Tue Dec 10 10:35:32 2019	(r355581)
+++ head/share/mk/bsd.files.mk	Tue Dec 10 12:12:48 2019	(r355582)
@@ -116,7 +116,7 @@ installfiles-${group}: _${group}INS_${file}
 _${group}INS_${file}: ${file} installdirs-${_${group}DIR_${file}}
 	${INSTALL} ${${group}TAG_ARGS} -o ${${group}OWN_${file}} \
 	    -g ${${group}GRP_${file}} -m ${${group}MODE_${file}} \
-	    ${.ALLSRC:[1]} ${${group}PREFIX_${file}}/${${group}NAME_${file}}
+	    ${.ALLSRC:Ninstalldirs-*} ${${group}PREFIX_${file}}/${${group}NAME_${file}}
 .endfor # file in ${${group}}
 
 .endif # defined(${group}) && !empty(${group})


More information about the svn-src-head mailing list