From owner-svn-src-head@freebsd.org Wed Sep 23 04:32:20 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CA84A076DA; Wed, 23 Sep 2015 04:32:20 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4944F1176; Wed, 23 Sep 2015 04:32:20 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id 41D9D1849; Wed, 23 Sep 2015 04:32:20 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id E089C134BB; Wed, 23 Sep 2015 04:32:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id AcM0X7JRNbka; Wed, 23 Sep 2015 04:32:17 +0000 (UTC) Subject: Re: svn commit: r287185 - head/share/mk DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 83396134B5 To: Warner Losh , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201508270152.t7R1qks4074549@repo.freebsd.org> From: Bryan Drewery Organization: FreeBSD Message-ID: <56022B4C.7070407@FreeBSD.org> Date: Tue, 22 Sep 2015 21:32:12 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <201508270152.t7R1qks4074549@repo.freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Sep 2015 04:32:20 -0000 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 @@ ____: > 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