diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-02 13:00:02 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-02 13:01:17 -0800 |
commit | 3ddfb04f41ac60529316f64ae5ab1a8ff1cce6e2 (patch) | |
tree | f5cd6ead02c34a65c6f577d62153601ba132f168 /lldb/source/Plugins/ScriptInterpreter/Python | |
parent | 086ac7e75c1027d0c68932ffee67e4d199c3d0ef (diff) | |
download | bcm5719-llvm-3ddfb04f41ac60529316f64ae5ab1a8ff1cce6e2.tar.gz bcm5719-llvm-3ddfb04f41ac60529316f64ae5ab1a8ff1cce6e2.zip |
[lldb/CMake] Use PYTHON_LIBRARIES instead of PYTHON_LIBRARY
PYTHON_LIBRARIES is the canonical variable set by FindPythonLibs while
PYTHON_LIBRARY is an implementation detail. This replaces the uses of
the latter with the former.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt b/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt index e8d1e762eff..9088afe8140 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt +++ b/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt @@ -19,7 +19,7 @@ add_lldb_library(lldbPluginScriptInterpreterPython PLUGIN lldbHost lldbInterpreter lldbTarget - ${PYTHON_LIBRARY} + ${PYTHON_LIBRARIES} ${LLDB_LIBEDIT_LIBS} LINK_COMPONENTS |