aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/macosx/osx-app.sh
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-09-30 17:19:48 +0000
committerGerald Combs <gerald@wireshark.org>2013-09-30 17:19:48 +0000
commit5687b33b4eaaec1df98e07fa9c7f4f597a99971b (patch)
tree469bd1f07bb7b0157756c717101887c22a496c5f /packaging/macosx/osx-app.sh
parentc70b1a548bc6f8084495b6b1f02253e6196ade9b (diff)
Make sure we copy Wireshark's libraries to Frameworks. Use top_builddir
instead of top_srcdir. It shouldn't make any difference in our case but it's more correct. svn path=/trunk/; revision=52302
Diffstat (limited to 'packaging/macosx/osx-app.sh')
-rwxr-xr-xpackaging/macosx/osx-app.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/packaging/macosx/osx-app.sh b/packaging/macosx/osx-app.sh
index 9bf21aa138..b01d560100 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -264,10 +264,11 @@ chmod -R g-w "$chmodbpf_dir"
# The rest of the Wireshark installation (we handled bin above)
rsync -av \
--exclude bin/ \
- --exclude lib/wireshark/plugins/ \
- --exclude lib/wireshark/python/ \
+ --exclude lib/ \
"$binary_path/.."/* "$pkgres"
+rsync -av $binary_path/../lib/*.dylib "$pkglib/"
+
# Remove the version number from the plugin path
find "$binary_path/../lib/wireshark/plugins" -type f \
-exec cp -fv "{}" "$pkgplugin/" \;