diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2016-12-17 13:04:35 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2016-12-17 13:04:35 +0000 |
commit | 521d7b45ba1bfa6d4b6588ea63fee77fdd7f08be (patch) | |
tree | b247d255c2c36d5775248f269e48d5297ac5b6f0 /lldb/scripts/Python | |
parent | 47b071deff324a76d85280c7ddb7e5dbc7668110 (diff) | |
download | bcm5719-llvm-521d7b45ba1bfa6d4b6588ea63fee77fdd7f08be.tar.gz bcm5719-llvm-521d7b45ba1bfa6d4b6588ea63fee77fdd7f08be.zip |
Fix the cmake declaration syntax
llvm-svn: 290045
Diffstat (limited to 'lldb/scripts/Python')
-rw-r--r-- | lldb/scripts/Python/modules/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/scripts/Python/modules/CMakeLists.txt b/lldb/scripts/Python/modules/CMakeLists.txt index cef7063c6cc..f2269c34200 100644 --- a/lldb/scripts/Python/modules/CMakeLists.txt +++ b/lldb/scripts/Python/modules/CMakeLists.txt @@ -6,6 +6,6 @@ if (CXX_SUPPORTS_NO_MACRO_REDEFINED) endif () # build the Python readline suppression module only on Linux -if (CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME STREQUAL "GNU" OR CMAKE_SYSTEM_NAME STREQUAL "kFreeBSD") +if("${CMAKE_SYSTEM_NAME}" MATCHES "Linux" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "GNU" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "kFreeBSD") add_subdirectory(readline) endif() |