diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-05 23:54:13 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-08-05 23:54:13 +0000 |
commit | 9bb525adb228a82b9e07e422e06d548dca60505e (patch) | |
tree | 7b7be25dacccf07f36d9bde8bbb547dbec133901 /lldb | |
parent | 25a255f5ed0bc85054ea440df0ba8ab4fd0a3091 (diff) | |
download | bcm5719-llvm-9bb525adb228a82b9e07e422e06d548dca60505e.tar.gz bcm5719-llvm-9bb525adb228a82b9e07e422e06d548dca60505e.zip |
[CMake] Remove check for the readline target.
This was introduced when we were building a custom readline Python
module on Linux [1]. Now that the readline target doesn't exist
anymore, it's safe to remove this dependency.
This fixes https://llvm.org/PR25136
[1] https://reviews.llvm.org/D13268
llvm-svn: 367956
Diffstat (limited to 'lldb')
-rw-r--r-- | lldb/CMakeLists.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/CMakeLists.txt b/lldb/CMakeLists.txt index 5415ed80587..5282e8254aa 100644 --- a/lldb/CMakeLists.txt +++ b/lldb/CMakeLists.txt @@ -209,10 +209,7 @@ if (NOT LLDB_DISABLE_PYTHON) DEPENDS ${lldb_scripts_dir}/lldb.py COMMENT "Python script sym-linking LLDB Python API") - if (TARGET readline) - set(readline_dep readline) - endif() - add_dependencies(finish_swig swig_wrapper liblldb lldb-argdumper ${readline_dep}) + add_dependencies(finish_swig swig_wrapper liblldb lldb-argdumper) set_target_properties(finish_swig swig_wrapper PROPERTIES FOLDER "lldb misc") # Ensure we do the python post-build step when building lldb. |