summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2019-09-25 12:57:51 -0400
committerOz Linden <oz@lindenlab.com>2019-09-25 12:57:51 -0400
commit79801c717de5de6b86b45eadf61b352c9951f61e (patch)
treeb783073a6699b4c8135eaefc3a64bf44869b2ec9 /indra/newview
parentbc8b55e1f2d772a657e4f7affc8a6c7d20f2c2e4 (diff)
fix warning about mismatched condition
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt
index 40ff1263f2..ab6b8c9c6e 100644
--- a/indra/newview/CMakeLists.txt
+++ b/indra/newview/CMakeLists.txt
@@ -2173,7 +2173,7 @@ if (DARWIN)
if (NOT USE_BUGSPLAT)
add_dependencies(${VIEWER_BINARY_NAME} mac-crash-logger)
- endif (USE_BUGSPLAT)
+ endif (NOT USE_BUGSPLAT)
if (ENABLE_SIGNING)
set(SIGNING_SETTING "--signature=${SIGNING_IDENTITY}")