[lldb] Fix python packages install path

Reviewers: mgorny

Subscribers: lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D68878

llvm-svn: 374577
This commit is contained in:
Haibo Huang 2019-10-11 17:44:14 +00:00
parent b3faa01ff9
commit 6aacd96875
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ if (NOT LLDB_DISABLE_PYTHON)
# 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)