[Lldb-commits] [PATCH] D68878: [lldb] Fix python packages install path

Haibo Huang via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 11 10:43:39 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rG6aacd9687543: [lldb] Fix python packages install path (authored by hhb).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D68878/new/

https://reviews.llvm.org/D68878

Files:
  lldb/CMakeLists.txt


Index: lldb/CMakeLists.txt
===================================================================
--- lldb/CMakeLists.txt
+++ lldb/CMakeLists.txt
@@ -235,7 +235,7 @@
     # Install the LLDB python module
     add_custom_target(lldb-python-scripts)
     add_dependencies(lldb-python-scripts finish_swig)
-    install(DIRECTORY ${CMAKE_BINARY_DIR}/${LLDB_PYTHON_RELATIVE_PATH}/
+    install(DIRECTORY ${CMAKE_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${LLDB_PYTHON_RELATIVE_PATH}/
             DESTINATION ${LLDB_PYTHON_RELATIVE_PATH}
             COMPONENT lldb-python-scripts)
     if (NOT LLVM_ENABLE_IDE)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D68878.224635.patch
Type: text/x-patch
Size: 594 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191011/5a12756e/attachment.bin>


More information about the lldb-commits mailing list