From 441d289a5c2792eaa2cf4d1aee5b7807bb7737b7 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 4 Jul 2018 14:38:21 +0000 Subject: [PATCH] [CMake] Remove redundant path component Fixes spurious path component introduced in r336278. The variable is cached so might require you to re-run CMake. llvm-svn: 336279 --- lldb/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt index 2b082843eeb4..9afe2d6d7e1f 100644 --- a/lldb/CMakeLists.txt +++ b/lldb/CMakeLists.txt @@ -92,7 +92,7 @@ if(LLDB_INCLUDE_TESTS) # The difference between the following two paths is significant. The path to # LLDB will point to LLDB's binary directory, while the other will point to # LLVM's binary directory in case the two differ. - set(LLDB_DEFAULT_TEST_EXECUTABLE "${LLVM_RUNTIME_OUTPUT_INTDIR}/bin/lldb${CMAKE_EXECUTABLE_SUFFIX}") + set(LLDB_DEFAULT_TEST_EXECUTABLE "${LLVM_RUNTIME_OUTPUT_INTDIR}/lldb${CMAKE_EXECUTABLE_SUFFIX}") set(LLDB_DEFAULT_TEST_DSYMUTIL "${LLVM_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin/dsymutil${CMAKE_EXECUTABLE_SUFFIX}") if (NOT LLDB_TEST_USE_CUSTOM_C_COMPILER AND TARGET clang)