svn commit: r329232 - head/sys/conf

Bryan Drewery bdrewery at FreeBSD.org
Tue Feb 13 17:51:17 UTC 2018


Author: bdrewery
Date: Tue Feb 13 17:51:16 2018
New Revision: 329232
URL: https://svnweb.freebsd.org/changeset/base/329232

Log:
  ports modules: Don't leak AUTO_OBJ changes into the port builds.
  
  This came about when r328489 made ports modules builds no longer use the
  in-tree share/mk files, but didn't cleanup MAKEOBJDIR from the
  environment.
  
  This fixes "Variable OBJTOP is recursive".
  
  Sponsored by:	Dell EMC

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Tue Feb 13 17:50:36 2018	(r329231)
+++ head/sys/conf/kern.post.mk	Tue Feb 13 17:51:16 2018	(r329232)
@@ -70,6 +70,7 @@ PORTSMODULESENV=\
 	-u CXX \
 	-u CPP \
 	-u MAKESYSPATH \
+	-u MAKEOBJDIR \
 	MAKEFLAGS="${MAKEFLAGS:M*:tW:S/^-m /-m_/g:S/ -m / -m_/g:tw:N-m_*}" \
 	SYSDIR=${SYSDIR} \
 	PATH=${PATH}:${LOCALBASE}/bin:${LOCALBASE}/sbin \


More information about the svn-src-all mailing list