From 336f5d91c6f4e93f77560d456fb29fbd82b237e5 Mon Sep 17 00:00:00 2001 From: Mark Vitale Date: Sun, 10 May 2020 20:53:22 -0400 Subject: [PATCH 1/1] DARWIN: ensure OpenAFS.pkg is signed Installation fails because the OpenAFS.pkg was inadvertently omitted from the codesign logic. Ensure that the package is signed. Change-Id: I0745146bc523750912dd6ee95fc16a70572be175 Reviewed-on: https://gerrit.openafs.org/14221 Reviewed-by: Marcio Brito Barbosa Tested-by: BuildBot Reviewed-by: Benjamin Kaduk --- src/packaging/MacOS/pkgbuild.sh.in | 1 + 1 file changed, 1 insertion(+) diff --git a/src/packaging/MacOS/pkgbuild.sh.in b/src/packaging/MacOS/pkgbuild.sh.in index 0462884..c0f33a3 100644 --- a/src/packaging/MacOS/pkgbuild.sh.in +++ b/src/packaging/MacOS/pkgbuild.sh.in @@ -531,6 +531,7 @@ if [ x"$PASS2" = x1 ]; then if [ x"$APP_KEY" != x ] ; then codesign --verbose --force --timestamp --sign "$APP_KEY" "$CURDIR"/dmg/Uninstall.command + codesign --verbose --force --timestamp --sign "$APP_KEY" "$CURDIR"/dmg/OpenAFS.pkg fi hdiutil create -srcfolder "$CURDIR"/dmg -volname OpenAFS \ -- 1.9.4