[debugserver] Fix inverted if block that resulted in us using the private entitlements

This commit is contained in:
Jonas Devlieghere 2021-01-15 17:40:41 -08:00
parent fd2083d73c
commit 999f5da6b3
1 changed files with 2 additions and 2 deletions

View File

@ -132,9 +132,9 @@ if(LLDB_USE_ENTITLEMENTS)
set(entitlements ${CMAKE_CURRENT_SOURCE_DIR}/debugserver-entitlements.plist)
else()
if (LLDB_USE_PRIVATE_ENTITLEMENTS)
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-entitlements.plist)
else()
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-private-entitlements.plist)
else()
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-entitlements.plist)
endif()
endif()
endif()