aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2019-09-25 16:18:30 -0700
committerGerald Combs <gerald@wireshark.org>2019-09-25 23:20:01 +0000
commit75dc0933c6d6bc3620b68ee05202a4da1a61f241 (patch)
treed12e368c63efb67a75a4576917fcb86bf2abee41 /packaging
parent60c9297069cc08d3cac2c05a9d550fc20c30c8dd (diff)
macOS: Sign our extra packages.
Change-Id: If2e28e4708f1d71fa4e7b549a2ba021557711d4e Reviewed-on: https://code.wireshark.org/review/34627 Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-app.sh.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/packaging/macosx/osx-app.sh.in b/packaging/macosx/osx-app.sh.in
index 6de11f41a9..7e3c1b93bf 100755
--- a/packaging/macosx/osx-app.sh.in
+++ b/packaging/macosx/osx-app.sh.in
@@ -498,6 +498,12 @@ if [ -n "$CODE_SIGN_IDENTITY" ] ; then
codesign_file "$plugin"
done
+ echo "Signing extra packages"
+ find $bundle/Contents/Resources/Extras -type f -name "*.pkg" | \
+ while read -r extra_pkg ; do
+ codesign_file "$extra_pkg"
+ done
+
echo "Signing secondary executables"
if [ -z "$secondary_binary_list" ] ; then
echo "No executables specified for code signing."