aboutsummaryrefslogtreecommitdiffstats
path: root/extcap
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-09-10 11:14:10 -0700
committerGerald Combs <gerald@wireshark.org>2019-09-10 18:20:57 +0000
commited4c62e3f711353368885bbe1b1219e410f39452 (patch)
tree7066ba0e001aa20ed8caf4fd9b0cd6f9c57ef798 /extcap
parent0eecdf653e4b16830b168311195c5eb37d79452c (diff)
CMake: Fix extcap symlinks on macOS.
Change-Id: I39b1ad1114ba7c8932786aab633d9df133e7ef4d Reviewed-on: https://code.wireshark.org/review/34496 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'extcap')
-rw-r--r--extcap/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/extcap/CMakeLists.txt b/extcap/CMakeLists.txt
index 03b2b0273e..f28329fe8b 100644
--- a/extcap/CMakeLists.txt
+++ b/extcap/CMakeLists.txt
@@ -66,7 +66,7 @@ macro(set_extcap_executable_properties _executable)
# target in the application bundle.
add_custom_target(${_executable}-symlink
COMMAND ln -s -f
- Wireshark.app/Contents/MacOS/${_executable}
+ Wireshark.app/Contents/MacOS/extcap/${_executable}
${CMAKE_BINARY_DIR}/run/${_executable}
)
add_dependencies(${_executable} ${_executable}-symlink)