For each FOO in FILESLISTS, append the value of FOO.yes, sort, and

remove duplicates.
This commit is contained in:
Warner Losh 2015-08-27 01:52:45 +00:00
parent 135342777c
commit 66d0a2d500
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287185

View File

@ -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