forked from OSchip/llvm-project
[debugserver] Fix inverted if block that resulted in us using the private entitlements
This commit is contained in:
parent
fd2083d73c
commit
999f5da6b3
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue