aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/macosx/osx-app.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/macosx/osx-app.sh')
-rwxr-xr-xpackaging/macosx/osx-app.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 5356d7434f..158b930496 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -290,11 +290,18 @@ create_bundle() {
done
#
- # Links to executables
+ # Executable launchers in $pkgbin
#
- ln -s ../../MacOS/Wireshark $pkgbin/wireshark
+ # We can't just symbolically link to the executables, as
+ # that means that the executable won't be in Contents/MacOS,
+ # which means that all @executable_path-relative references
+ # will go to the wrong place if we run the executables using
+ # the symlink, which means that the executables could fail
+ # (they *do* fail to find the Cocoa Qt plugin, for example).
+ #
+ cp utility-launcher/wireshark $pkgbin
for binary in $cli_binary_list ; do
- ln -s ../../MacOS/$binary $pkgbin/$binary
+ ln -s ./wireshark $pkgbin/$binary
done
# The rest of the Wireshark installation (we handled bin above)