Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Jan 2018 01:09:41 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327858 - head/share/mk
Message-ID:  <201801120109.w0C19feH032927@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Fri Jan 12 01:09:41 2018
New Revision: 327858
URL: https://svnweb.freebsd.org/changeset/base/327858

Log:
  Add a hack to disable AUTO_OBJ for 'old style' kernel builds.
  
  Another solution would be to extend the Makefile.sys.inc idea, or a .no_obj
  file, to more places but I would rather keep that limited to the top-level
  build for now to not impact performance (statting a file in every make call)
  or to bring unintended side-effects.
  
  Reported by:	jhb, imp
  Sponsored by:	Dell EMC Isilon

Modified:
  head/share/mk/src.sys.obj.mk

Modified: head/share/mk/src.sys.obj.mk
==============================================================================
--- head/share/mk/src.sys.obj.mk	Fri Jan 12 01:09:30 2018	(r327857)
+++ head/share/mk/src.sys.obj.mk	Fri Jan 12 01:09:41 2018	(r327858)
@@ -132,7 +132,8 @@ __objdir:=	${MAKEOBJDIR}
 .if ${.MAKE.LEVEL} == 0 && \
     ${MK_AUTO_OBJ} == "no" && empty(.MAKEOVERRIDES:MMK_AUTO_OBJ) && \
     !defined(WITHOUT_AUTO_OBJ) && !make(showconfig) && !make(print-dir) && \
-    !defined(NO_OBJ)
+    !defined(NO_OBJ) && \
+    empty(RELDIR:Msys/*/compile/*)
 # Find the last existing directory component and check if we can write to it.
 # If the last component is a symlink then recurse on the new path.
 CheckAutoObj= \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801120109.w0C19feH032927>