svn commit: r287185 - head/share/mk

Warner Losh imp at FreeBSD.org
Thu Aug 27 01:52:46 UTC 2015


Author: imp
Date: Thu Aug 27 01:52:45 2015
New Revision: 287185
URL: https://svnweb.freebsd.org/changeset/base/287185

Log:
  For each FOO in FILESLISTS, append the value of FOO.yes, sort, and
  remove duplicates.

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

Modified: head/share/mk/bsd.files.mk
==============================================================================
--- head/share/mk/bsd.files.mk	Thu Aug 27 01:02:01 2015	(r287184)
+++ head/share/mk/bsd.files.mk	Thu Aug 27 01:52:45 2015	(r287185)
@@ -10,6 +10,9 @@ __<bsd.files.mk>__:
 FILESGROUPS?=	FILES
 
 .for group in ${FILESGROUPS}
+# Add in foo.yes and remove duplicates from all the groups
+${${group}}:= ${${group}} ${${group}.yes}
+${${group}}:= ${${group}:O:u}
 buildfiles: ${${group}}
 .endfor
 


More information about the svn-src-head mailing list