svn commit: r359208 - head

Ed Maste emaste at FreeBSD.org
Sun Mar 22 03:10:33 UTC 2020


Author: emaste
Date: Sun Mar 22 03:10:31 2020
New Revision: 359208
URL: https://svnweb.freebsd.org/changeset/base/359208

Log:
  Makefile.inc1: set DB_FROM_SRC also for stageworld
  
  stageworld, invoked from e.g. `make packages`, shouldn't rely on the
  build host's users/groups.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Sun Mar 22 02:56:03 2020	(r359207)
+++ head/Makefile.inc1	Sun Mar 22 03:10:31 2020	(r359208)
@@ -851,7 +851,8 @@ IMAKEENV+=	PATH=${TMPPATH}:${INSTALLTMP}
 
 # When generating install media, do not allow user and group information from
 # the build host to affect the contents of the distribution.
-.if make(distributeworld) || make(distrib-dirs) || make(distribution)
+.if make(distributeworld) || make(distrib-dirs) || make(distribution) || \
+    make(stageworld)
 DB_FROM_SRC=	yes
 .endif
 


More information about the svn-src-head mailing list