Skip to content

Commit 65e47e2

Browse files
authored
Merge pull request #2349 from apple/🍒/ganymede/999f5da6b3088fa4c0bb9d05b358d015ca74c71f
[debugserver] Fix inverted if block that resulted in us using the private entitlements
2 parents 7561774 + 340e032 commit 65e47e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎lldb/tools/debugserver/source/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ if(LLDB_USE_ENTITLEMENTS)
132132
set(entitlements ${CMAKE_CURRENT_SOURCE_DIR}/debugserver-entitlements.plist)
133133
else()
134134
if (LLDB_USE_PRIVATE_ENTITLEMENTS)
135-
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-entitlements.plist)
136-
else()
137135
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-private-entitlements.plist)
136+
else()
137+
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-entitlements.plist)
138138
endif()
139139
endif()
140140
endif()

0 commit comments

Comments
 (0)