svn commit: r298864 - head/share/mk

Garrett Cooper ngie at FreeBSD.org
Sat Apr 30 21:32:30 UTC 2016


Author: ngie
Date: Sat Apr 30 21:32:29 2016
New Revision: 298864
URL: https://svnweb.freebsd.org/changeset/base/298864

Log:
  Allow FILESGROUPS to be specified more than once by pruning out duplicates
  
  MFC after: 2 weeks
  Sponsored by: EMC / Isilon Storage Division

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

Modified: head/share/mk/bsd.files.mk
==============================================================================
--- head/share/mk/bsd.files.mk	Sat Apr 30 21:27:41 2016	(r298863)
+++ head/share/mk/bsd.files.mk	Sat Apr 30 21:32:29 2016	(r298864)
@@ -9,7 +9,7 @@ __<bsd.files.mk>__:
 
 FILESGROUPS?=	FILES
 
-_FILESGROUPS=	${FILESGROUPS:C,[/*],_,g}
+_FILESGROUPS=	${FILESGROUPS:C,[/*],_,g:u}
 
 .for group in ${_FILESGROUPS}
 # Add in foo.yes and remove duplicates from all the groups


More information about the svn-src-head mailing list