summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2017-08-15 20:56:04 +0000
committerChris Bieneman <beanz@apple.com>2017-08-15 20:56:04 +0000
commita944dd109bfb8b4d920cd28f88065c1527ec9516 (patch)
tree664107ee94d3e81aa9ba17b25e139c21c2c459b6
parent46d3576c2427f147b518eac2417d5614e658486b (diff)
downloadbcm5719-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.txt2
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})
OpenPOWER on IntegriCloud