From 94af9724d140fd132896b650d10c4d060788e4f0 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 25 Sep 2017 09:36:38 -0700 Subject: macOS: Fixup plugin signing. Use `find` to find plugins. Change-Id: I6df8877547ecbd19644a846e5cb02e8b65f19e61 Reviewed-on: https://code.wireshark.org/review/23730 Reviewed-by: Gerald Combs --- packaging/macosx/osx-app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packaging') 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 -- cgit v1.2.3