From: bdrewery Date: Sat, 17 Oct 2015 15:50:52 +0000 (+0000) Subject: Conditionalize the META_MODE tool handling on MK_META_MODE. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=c8894251e10b362c36b70b0575a33d4624abfd1c;p=people%2Fjulieng%2Ffreebsd.git 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 --- diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index acb09f51c544..0c564a5fadf1 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -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