summaryrefslogtreecommitdiff
path: root/lldb/tools
diff options
context:
space:
mode:
authorNathan Lanza <nathan@lanza.io>2018-11-06 23:54:52 +0000
committerNathan Lanza <nathan@lanza.io>2018-11-06 23:54:52 +0000
commitd9d7609a06bafb2c758c24a6c5228a0d57edb640 (patch)
treea67cbf128284acfaf960348afecd2d6dc48d6299 /lldb/tools
parent4dad609b3dd7354b4373f4596dcb0152b2087d26 (diff)
Remove working directory for debugserver code signing target
Summary: LLVM puts output binaries in `${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/bin`. This chunk of code left out the `${CMAKE_CFG_INTDIR}`. Ultimately, the code signing target does not need a working directory anyways, so it's safe to just remove it. Reviewers: sas, xiaobai, beanz Reviewed By: beanz Subscribers: mgorny Differential Revision: https://reviews.llvm.org/D53959
Diffstat (limited to 'lldb/tools')
-rw-r--r--lldb/tools/debugserver/source/CMakeLists.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/CMakeLists.txt b/lldb/tools/debugserver/source/CMakeLists.txt
index ec136039d34..16369e46e54 100644
--- a/lldb/tools/debugserver/source/CMakeLists.txt
+++ b/lldb/tools/debugserver/source/CMakeLists.txt
@@ -239,7 +239,6 @@ else()
codesign --force --sign ${LLDB_CODESIGN_IDENTITY}
${entitlements_flags}
$<TARGET_FILE:debugserver>
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin
)
if(IOS)
add_custom_command(TARGET debugserver-nonui
@@ -248,7 +247,6 @@ else()
codesign --force --sign ${LLDB_CODESIGN_IDENTITY}
${entitlements_flags}
$<TARGET_FILE:debugserver>
- WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/bin
)
endif()
endif()