[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:14:56 PDT 2019
hhb created this revision.
hhb added a reviewer: mgorny.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
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.224628.patch
Type: text/x-patch
Size: 594 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20191011/0fe0aca1/attachment.bin>
More information about the lldb-commits
mailing list