svn commit: r287185 - head/share/mk

Bryan Drewery bdrewery at FreeBSD.org
Wed Sep 23 04:32:20 UTC 2015


On 8/26/15 6:52 PM, Warner Losh wrote:
> 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
>  
> 

What is this for?

-- 
Regards,
Bryan Drewery


More information about the svn-src-head mailing list