Fix LLDB CMake arguments

Rename LLDB_DISABLE_LIBEDIT to LLDB_ENABLE_LIBEDIT (see 62456e579e)
Rename LLDB_DISABLE_CURSES to LLDB_ENABLE_CURSES (see a4304f96d6)

This addresses a warning where the options came up:

```
CMake Warning:
  Manually-specified variables were not used by the project:

    CMAKE_CXX_FLAGS_RELEASE
    CMAKE_C_FLAGS_RELEASE
    CMAKE_Fortran_FLAGS_RELEASE
    CMAKE_INSTALL_DO_STRIP
    INCLUDE_INSTALL_DIR
    LIB_INSTALL_DIR
    LIB_SUFFIX
    LLDB_DISABLE_CURSES
    LLDB_DISABLE_LIBEDIT
    LLDB_DISABLE_PYTHON
    SHARE_INSTALL_PREFIX
    SYSCONF_INSTALL_DIR
```
This commit is contained in:
Konrad Kleine 2024-09-27 10:45:51 +02:00 committed by kkleine
parent 2e9b6797d1
commit b62f8c019b

View file

@ -180,8 +180,8 @@ popd
\
\
%if %{with lldb}
-DLLDB_DISABLE_CURSES:BOOL=OFF \
-DLLDB_DISABLE_LIBEDIT:BOOL=OFF \
-DLLDB_ENABLE_CURSES:BOOL=ON \
-DLLDB_ENABLE_LIBEDIT:BOOL=ON \
-DLLDB_DISABLE_PYTHON:BOOL=OFF \
%ifarch ppc64le
-DLLDB_TEST_USER_ARGS=--skip-category=watchpoint \