aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-03-11 08:25:34 +0100
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2014-03-19 11:19:37 +0000
commiteb2fb39ff72ccf827ba97fc9dc9bc559bb9d67b4 (patch)
tree0d5b8c36b319eaf2ef30aeb4b9b969db2f72be32 /packaging
parent4b8b83407ac744d114462235a8bcca0d480954c7 (diff)
The 1.11.x installer puts the global plugins in the wrong place [Mac OS X]
Issue found by rols The installer puts the normal included plugins (e.g. mate, wimax) in /Applications/Wireshark.app/Contents/Frameworks/wireshark/plugins, however the global plugins directory is set to /Applications/Wireshark.app/Contents/Resources/lib/wireshark/plugins (as it was in previous versions) so no plugins load at startup. In order to make them load you have to create this directory and copy the plugins there, or put them in your personal directory. From remark of Gerald, use recommandation of Bundle Programming Guide (use Contents/PlugIns for plugin) https://developer.apple.com/library/mac/documentation/corefoundation/conceptual/cfbundles/BundleTypes/BundleTypes.html#//apple_ref/doc/uid/10000123i-CH101-SW19 Change-Id: Ib1ae7da48a8fa94f7037912cd44c05532a238b71 Closed-bug: 9854 Reviewed-on: https://code.wireshark.org/review/602 Reviewed-by: Gerald Combs <gerald@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 4356d848b5..3db8fb5f47 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -218,7 +218,7 @@ fi
#pkglib="$pkgres/lib"
pkglib="$bundle/Contents/Frameworks"
pkgqtplugin="$bundle/Contents/PlugIns"
-pkgplugin="$pkglib/wireshark/plugins"
+pkgplugin="$bundle/Contents/PlugIns/wireshark"
pkgpython="$pkglib/wireshark/python"
mkdir -p "$pkgexec"