svn commit: r351861 - head/share/mk

Emmanuel Vadot manu at FreeBSD.org
Thu Sep 5 14:18:14 UTC 2019


Author: manu
Date: Thu Sep  5 14:18:13 2019
New Revision: 351861
URL: https://svnweb.freebsd.org/changeset/base/351861

Log:
  pkgbase: Handle FILES when no FILESGROUP isn't used
  
  bsd.files.mk only add the TAG when groups are used, fix this.
  
  Reviewed by:	gjb
  Differential Revision:	https://reviews.freebsd.org/D21520

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

Modified: head/share/mk/bsd.files.mk
==============================================================================
--- head/share/mk/bsd.files.mk	Thu Sep  5 14:17:28 2019	(r351860)
+++ head/share/mk/bsd.files.mk	Thu Sep  5 14:18:13 2019	(r351861)
@@ -38,6 +38,10 @@ ${group}MODE?=	${SHAREMODE}
 ${group}DIR?=	BINDIR
 STAGE_SETS+=	${group:C,[/*],_,g}
 
+.if ${group} == "FILES"
+FILESPACKAGE=	${PACKAGE}
+.endif
+
 .if defined(NO_ROOT)
 .if !defined(${group}TAGS) || ! ${${group}TAGS:Mpackage=*}
 ${group}TAGS+=		package=${${group}PACKAGE:Uutilities}


More information about the svn-src-all mailing list