From ca567ad6ffc1fbbd5e354ab80e426c052d027811 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Fri, 20 Dec 2019 16:50:06 +0100 Subject: [PATCH] [lldb/cmake] Remove support for LLDB_DISABLE_CURSES The buildbot which necessitated this is fixed. --- lldb/cmake/modules/LLDBConfig.cmake | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lldb/cmake/modules/LLDBConfig.cmake b/lldb/cmake/modules/LLDBConfig.cmake index 063c1fdaa376..e5573197540d 100644 --- a/lldb/cmake/modules/LLDBConfig.cmake +++ b/lldb/cmake/modules/LLDBConfig.cmake @@ -29,12 +29,7 @@ set(default_enable_lua OFF) # Experimental set(default_enable_libedit ON) set(default_enable_curses ON) -# Temporary support the old LLDB_DISABLE_* variables -if (DEFINED LLDB_DISABLE_CURSES) - if (LLDB_DISABLE_CURSES) - set(default_enable_curses OFF) - endif() -endif() +# Temporarily support the old LLDB_DISABLE_* variables if (DEFINED LLDB_DISABLE_PYTHON) if (LLDB_DISABLE_PYTHON) set(default_enable_python OFF)