aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-11-24 20:05:14 -0600
committerGerald Combs <gerald@wireshark.org>2019-11-25 02:10:02 +0000
commit56ed5d49f49a67b435ceb79594c31e34489bb9d3 (patch)
treef7b43f312caa6b613bee56694dd5f02cbbd85f38 /packaging
parent4f2304ae0222a88a3f04ca7d169fe8580b82d4eb (diff)
macOS: Use the correct path when building our app bundle.
Use the correct path to the Wireshark executable when finding dependencies and adding debugging symbols. Change-Id: Iefafa9d453ce60e77853f2d125769826b4d702c0 Reviewed-on: https://code.wireshark.org/review/35202 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index 152e4d6c4d..04e3764474 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -137,7 +137,7 @@ pkgplugin="$bundle/Contents/PlugIns/wireshark/@PLUGIN_PATH_ID@"
#
secondary_binary_list=$( find $pkgexec \! -name Wireshark -type f -perm -0555 -print | sort )
plugin_library_list=$( find $pkgplugin -name "*.so" -type f -perm -0555 -print | sort )
-bundle_binary_list="Wireshark $secondary_binary_list $plugin_library_list"
+bundle_binary_list="$pkgexec/Wireshark $secondary_binary_list $plugin_library_list"
echo -e "\\nFixing up $bundle..."