aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2017-09-25 09:36:38 -0700
committerGerald Combs <gerald@wireshark.org>2017-09-25 16:38:54 +0000
commit94af9724d140fd132896b650d10c4d060788e4f0 (patch)
tree1dcce76ae7d79d1c5078bc2baad105483a2437b9 /packaging
parent33c00a6741b7cd31e28b7034bf25fc2f4b2ad767 (diff)
macOS: Fixup plugin signing.
Use `find` to find plugins. Change-Id: I6df8877547ecbd19644a846e5cb02e8b65f19e61 Reviewed-on: https://code.wireshark.org/review/23730 Reviewed-by: Gerald Combs <gerald@wireshark.org>
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 cb507ae17b..2fd3b4a016 100755
--- a/packaging/macosx/osx-app.sh
+++ b/packaging/macosx/osx-app.sh
@@ -624,7 +624,7 @@ if [ -n "$CODE_SIGN_IDENTITY" ] ; then
done
echo "Signing plugins"
- for plugin in $pkgplugin/*.so ; do
+ find $pkgplugin -type f -name "*.so" | while read plugin ; do
codesign_file "$plugin"
done