svn commit: r359690 - head/share/mk

Kyle Evans kevans at FreeBSD.org
Tue Apr 7 15:10:05 UTC 2020


Author: kevans
Date: Tue Apr  7 15:10:04 2020
New Revision: 359690
URL: https://svnweb.freebsd.org/changeset/base/359690

Log:
  Fix port/kernel builds after r359681
  
  Submitted by:	bdrewery
  Reported by:	bdrewery, sobomax, antoine

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

Modified: head/share/mk/bsd.sys.mk
==============================================================================
--- head/share/mk/bsd.sys.mk	Tue Apr  7 14:14:59 2020	(r359689)
+++ head/share/mk/bsd.sys.mk	Tue Apr  7 15:10:04 2020	(r359690)
@@ -215,8 +215,8 @@ CFLAGS+=	-Wno-format-zero-length
 #
 # XXX: This is a hack to support complete external installs of clang while
 # we work to synchronize our decleration guards with those in the clang tree.
-.if ${MK_CLANG_BOOTSTRAP} == "no" && ${COMPILER_RESOURCE_DIR} != "unknown" && \
-    !defined(BOOTSTRAPPING)
+.if ${MK_CLANG_BOOTSTRAP:Uno} == "no" && \
+    ${COMPILER_RESOURCE_DIR} != "unknown" && !defined(BOOTSTRAPPING)
 CFLAGS+=-nobuiltininc -idirafter ${COMPILER_RESOURCE_DIR}/include
 .endif
 .endif


More information about the svn-src-all mailing list