Author: jdevlieghere Date: Wed Jul 4 07:38:21 2018 New Revision: 336279 URL: http://llvm.org/viewvc/llvm-project?rev=336279&view=rev Log: [CMake] Remove redundant path component
Fixes spurious path component introduced in r336278. The variable is cached so might require you to re-run CMake. Modified: lldb/trunk/CMakeLists.txt Modified: lldb/trunk/CMakeLists.txt URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/CMakeLists.txt?rev=336279&r1=336278&r2=336279&view=diff ============================================================================== --- lldb/trunk/CMakeLists.txt (original) +++ lldb/trunk/CMakeLists.txt Wed Jul 4 07:38:21 2018 @@ -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) _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits