[clang] f0ffff4 - [CMake] Fix typo in error message for LLD in bootstrap builds.

Shivam Gupta via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 6 10:07:22 PDT 2021


Author: Frederic Cambus
Date: 2021-10-06T22:38:12+05:30
New Revision: f0ffff43b765ee0484e5303edc82f9e528a3547e

URL: https://github.com/llvm/llvm-project/commit/f0ffff43b765ee0484e5303edc82f9e528a3547e
DIFF: https://github.com/llvm/llvm-project/commit/f0ffff43b765ee0484e5303edc82f9e528a3547e.diff

LOG: [CMake] Fix typo in error message for LLD in bootstrap builds.

Reviewed By: xgupta

Differential Revision: https://reviews.llvm.org/D110836

Added: 
    

Modified: 
    clang/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt
index f562c73af3fe..5a58d7faa9fa 100644
--- a/clang/CMakeLists.txt
+++ b/clang/CMakeLists.txt
@@ -639,7 +639,7 @@ if (CLANG_ENABLE_BOOTSTRAP)
     # adding lld to clang-bootstrap-deps without having it enabled in
     # LLVM_ENABLE_PROJECTS just generates a cryptic error message.
     if (NOT "lld" IN_LIST LLVM_ENABLE_PROJECTS)
-      message(FATAL_ERROR "LLD is enabled in the boostrap build, but lld is not in LLVM_ENABLE_PROJECTS")
+      message(FATAL_ERROR "LLD is enabled in the bootstrap build, but lld is not in LLVM_ENABLE_PROJECTS")
     endif()
     add_dependencies(clang-bootstrap-deps lld)
   endif()


        


More information about the cfe-commits mailing list