[Lldb-commits] [lldb] c899b24 - [lldb] [cmake] Fix another typo in third-party/unittest path

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Sat Nov 12 01:35:48 PST 2022


Author: Michał Górny
Date: 2022-11-12T10:35:19+01:00
New Revision: c899b243f681fa75cb68144a4d599fdada764d78

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

LOG: [lldb] [cmake] Fix another typo in third-party/unittest path

Added: 
    

Modified: 
    lldb/cmake/modules/LLDBStandalone.cmake

Removed: 
    


################################################################################
diff  --git a/lldb/cmake/modules/LLDBStandalone.cmake b/lldb/cmake/modules/LLDBStandalone.cmake
index 22a284adc222b..81304723f0f40 100644
--- a/lldb/cmake/modules/LLDBStandalone.cmake
+++ b/lldb/cmake/modules/LLDBStandalone.cmake
@@ -101,7 +101,7 @@ if(LLDB_INCLUDE_TESTS)
   # Build the gtest library needed for unittests, if we have LLVM sources
   # handy.
   if (EXISTS ${LLVM_THIRD_PARTY_DIR}/unittest AND NOT TARGET llvm_gtest)
-    add_subdirectory(${LLVM_THIRD_PARTY_DIR}/utils/unittest third-party/unittest)
+    add_subdirectory(${LLVM_THIRD_PARTY_DIR}/unittest third-party/unittest)
   endif()
   # LLVMTestingSupport library is needed for Process/gdb-remote.
   if (EXISTS ${LLVM_MAIN_SRC_DIR}/lib/Testing/Support


        


More information about the lldb-commits mailing list