[Lldb-commits] [lldb] 5580fa1 - [lldb] Fix debugserver-entitlements.plist path
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 3 10:42:43 PST 2021
Author: Jonas Devlieghere
Date: 2021-02-03T10:42:36-08:00
New Revision: 5580fa10dbda49199ddc553294c0d18e0d21373a
URL: https://github.com/llvm/llvm-project/commit/5580fa10dbda49199ddc553294c0d18e0d21373a
DIFF: https://github.com/llvm/llvm-project/commit/5580fa10dbda49199ddc553294c0d18e0d21373a.diff
LOG: [lldb] Fix debugserver-entitlements.plist path
Added:
Modified:
lldb/tools/debugserver/source/CMakeLists.txt
Removed:
################################################################################
diff --git a/lldb/tools/debugserver/source/CMakeLists.txt b/lldb/tools/debugserver/source/CMakeLists.txt
index 710e11f8bd8f..2e78896cf3c0 100644
--- a/lldb/tools/debugserver/source/CMakeLists.txt
+++ b/lldb/tools/debugserver/source/CMakeLists.txt
@@ -129,7 +129,7 @@ endif()
if(LLDB_USE_ENTITLEMENTS)
if(APPLE_EMBEDDED)
- set(entitlements ${CMAKE_CURRENT_SOURCE_DIR}/debugserver-entitlements.plist)
+ set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-entitlements.plist)
else()
if (LLDB_USE_PRIVATE_ENTITLEMENTS)
set(entitlements ${DEBUGSERVER_RESOURCE_DIR}/debugserver-macosx-private-entitlements.plist)
More information about the lldb-commits
mailing list