svn commit: r289458 - head/lib/clang

Bryan Drewery bdrewery at FreeBSD.org
Sat Oct 17 15:50:54 UTC 2015


Author: bdrewery
Date: Sat Oct 17 15:50:52 2015
New Revision: 289458
URL: https://svnweb.freebsd.org/changeset/base/289458

Log:
  Conditionalize the META_MODE tool handling on MK_META_MODE.
  
  It was not being used outside of META_MODE but this should make it more clear
  that it is only for META_MODE.
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/lib/clang/clang.build.mk

Modified: head/lib/clang/clang.build.mk
==============================================================================
--- head/lib/clang/clang.build.mk	Sat Oct 17 14:58:55 2015	(r289457)
+++ head/lib/clang/clang.build.mk	Sat Oct 17 15:50:52 2015	(r289458)
@@ -39,6 +39,7 @@ CXXFLAGS.clang+= -stdlib=libc++
 
 .PATH:	${LLVM_SRCS}/${SRCDIR}
 
+.if ${MK_META_MODE} == "yes"
 .if empty(TOOLSDIR) || !exists(${TOOLSDIR}/usr/bin/clang-tblgen)
 .if ${MACHINE} == "host" && defined(BOOTSTRAPPING_TOOLS)
 .if !empty(LEGACY_TOOLS) && exists(${LEGACY_TOOLS}/usr/bin/tblgen)
@@ -57,6 +58,7 @@ TOOLSDIR?=
 TBLGEN= ${TOOLSDIR}/usr/bin/tblgen
 CLANG_TBLGEN= ${TOOLSDIR}/usr/bin/clang-tblgen
 .endif
+.endif	# ${MK_META_MODE} == "yes"
 TBLGEN?=	tblgen
 CLANG_TBLGEN?=	clang-tblgen
 


More information about the svn-src-all mailing list