forked from OSchip/llvm-project
[CMake] Fixing inconsistency caused by copy-pasta.
This will actually fix the PR 24194. llvm-svn: 242748
This commit is contained in:
parent
f849bb49cc
commit
077f3fe1a1
|
@ -694,8 +694,8 @@ macro(add_llvm_external_project name)
|
|||
set(add_llvm_external_dir ${name})
|
||||
endif()
|
||||
canonicalize_tool_name(${name} nameUPPER)
|
||||
if(NOT DEFINED LLVM_TOOL_${projectName}_BUILD)
|
||||
option(LLVM_TOOL_${name}_BUILD
|
||||
if(NOT DEFINED LLVM_TOOL_${nameUPPER}_BUILD)
|
||||
option(LLVM_TOOL_${nameUPPER}_BUILD
|
||||
"Whether to build ${name} as part of LLVM" On)
|
||||
endif()
|
||||
if (LLVM_TOOL_${nameUPPER}_BUILD)
|
||||
|
|
Loading…
Reference in New Issue