diff options
author | Oz Linden <oz@lindenlab.com> | 2019-09-25 12:57:51 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2019-09-25 12:57:51 -0400 |
commit | 79801c717de5de6b86b45eadf61b352c9951f61e (patch) | |
tree | b783073a6699b4c8135eaefc3a64bf44869b2ec9 /indra/newview | |
parent | bc8b55e1f2d772a657e4f7affc8a6c7d20f2c2e4 (diff) |
fix warning about mismatched condition
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/CMakeLists.txt | 2 |
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}") |