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>
This commit is contained in:
Gerald Combs 2017-09-25 09:36:38 -07:00
parent 33c00a6741
commit 94af9724d1
1 changed files with 1 additions and 1 deletions

View File

@ -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