diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-30 22:53:41 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-11-30 22:53:41 +0000 |
commit | e58834bc294262ba82caaa538ddc219e8a11e740 (patch) | |
tree | 607f2554ee823a8f9be600521a7c9226ad494060 | |
parent | 33ba10888eef26ad11211533584fea290b47ae49 (diff) | |
download | src-e58834bc294262ba82caaa538ddc219e8a11e740.tar.gz src-e58834bc294262ba82caaa538ddc219e8a11e740.zip |
Only DIRDEPS_BUILD should trigger this logic.
Missed in r290816.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=291539
-rw-r--r-- | lib/clang/clang.build.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/clang/clang.build.mk b/lib/clang/clang.build.mk index 735e5b995ec3..bbe8e1f4bef2 100644 --- a/lib/clang/clang.build.mk +++ b/lib/clang/clang.build.mk @@ -39,7 +39,7 @@ CXXFLAGS.clang+= -stdlib=libc++ .PATH: ${LLVM_SRCS}/${SRCDIR} -.if ${MK_META_MODE} == "yes" +.if ${MK_DIRDEPS_BUILD} == "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) @@ -58,7 +58,7 @@ TOOLSDIR?= TBLGEN= ${TOOLSDIR}/usr/bin/tblgen CLANG_TBLGEN= ${TOOLSDIR}/usr/bin/clang-tblgen .endif -.endif # ${MK_META_MODE} == "yes" +.endif # ${MK_DIRDEPS_BUILD} == "yes" TBLGEN?= tblgen CLANG_TBLGEN?= clang-tblgen |