diff options
author | Chris Bieneman <beanz@apple.com> | 2017-08-15 20:56:04 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2017-08-15 20:56:04 +0000 |
commit | a944dd109bfb8b4d920cd28f88065c1527ec9516 (patch) | |
tree | 664107ee94d3e81aa9ba17b25e139c21c2c459b6 | |
parent | 46d3576c2427f147b518eac2417d5614e658486b (diff) | |
download | bcm5719-llvm-a944dd109bfb8b4d920cd28f88065c1527ec9516.tar.gz bcm5719-llvm-a944dd109bfb8b4d920cd28f88065c1527ec9516.zip |
[CMake] Fixing an error in STREQUAL usage.
llvm-svn: 310955
-rw-r--r-- | lldb/tools/debugserver/source/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/debugserver/source/CMakeLists.txt b/lldb/tools/debugserver/source/CMakeLists.txt index 491b4a6f967..ce606330d61 100644 --- a/lldb/tools/debugserver/source/CMakeLists.txt +++ b/lldb/tools/debugserver/source/CMakeLists.txt @@ -185,7 +185,7 @@ endif() set(LLDB_CODESIGN_IDENTITY "lldb_codesign" CACHE STRING "Identity used for code signing. Set to empty string to skip the signing step.") set(LLDB_USE_ENTITLEMENTS_Default On) -if(LLDB_CODESIGN_INDENTITY STREQUAL "lldb_codesign") +if("${LLDB_CODESIGN_INDENTITY}" STREQUAL "lldb_codesign") set(LLDB_USE_ENTITLEMENTS_Default Off) endif() option(LLDB_USE_ENTITLEMENTS "Use entitlements when codesigning (Defaults Off when using lldb_codesign identity, otherwise On)" ${LLDB_USE_ENTITLEMENTS_Default}) |