[Lldb-commits] [lldb] 823dbb4 - [lldb/CMake] Only CMAKE_CFG_INTDIR if it's not '.'

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 27 17:49:39 PDT 2020


Author: Jonas Devlieghere
Date: 2020-03-27T17:49:00-07:00
New Revision: 823dbb4c748feaae6f20637efd0de159dd156c69

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

LOG: [lldb/CMake] Only CMAKE_CFG_INTDIR if it's not '.'

Thanks to Brooks Davis for spotting this and finding a solution.

Added: 
    

Modified: 
    lldb/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt
index 7e8890da0204..bf748020ea40 100644
--- a/lldb/CMakeLists.txt
+++ b/lldb/CMakeLists.txt
@@ -224,8 +224,10 @@ if (LLDB_ENABLE_PYTHON)
   else()
     set(LLDB_PYTHON_INSTALL_PATH ${LLDB_PYTHON_RELATIVE_PATH})
   endif()
-  string(REPLACE ${CMAKE_CFG_INTDIR} "\$\{CMAKE_INSTALL_CONFIG_NAME\}" LLDB_PYTHON_INSTALL_PATH ${LLDB_PYTHON_INSTALL_PATH})
-  string(REPLACE ${CMAKE_CFG_INTDIR} "\$\{CMAKE_INSTALL_CONFIG_NAME\}" lldb_python_build_path ${lldb_python_build_path})
+  if (NOT CMAKE_CFG_INTDIR STREQUAL  ".")
+    string(REPLACE ${CMAKE_CFG_INTDIR} "\$\{CMAKE_INSTALL_CONFIG_NAME\}" LLDB_PYTHON_INSTALL_PATH ${LLDB_PYTHON_INSTALL_PATH})
+    string(REPLACE ${CMAKE_CFG_INTDIR} "\$\{CMAKE_INSTALL_CONFIG_NAME\}" lldb_python_build_path ${lldb_python_build_path})
+  endif()
   add_custom_target(lldb-python-scripts)
   add_dependencies(lldb-python-scripts finish_swig)
   install(DIRECTORY ${lldb_python_build_path}/../


        


More information about the lldb-commits mailing list