macOS: More ChmodBPF signing updates.

Run osx-extras.sh before building the ChmodBPF installer package.

Change-Id: Iec3f88da86e48b5aac385369c7e68f23babc4c34
Reviewed-on: https://code.wireshark.org/review/35491
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2019-12-18 09:33:23 -08:00
parent b044c5f1de
commit fd6cf89f21
2 changed files with 2 additions and 1 deletions

View File

@ -2770,6 +2770,7 @@ if(ENABLE_APPLICATION_BUNDLE)
# a signed ChmodBPF script.
set (install_chmodbpf_component_pkg "${CMAKE_BINARY_DIR}/install.ChmodBPF.pkg")
add_custom_command(OUTPUT "${install_chmodbpf_component_pkg}"
COMMAND "${CMAKE_SOURCE_DIR}/packaging/macosx/osx-extras.sh"
COMMAND pkgbuild
--identifier org.wireshark.ChmodBPF.pkg
--version 1.1

View File

@ -79,7 +79,7 @@ if [ -n "$CODE_SIGN_IDENTITY" ] ; then
# Code Signing Guide, "Testing Conformance with Command Line Tools"
codesign --verify --strict --verbose=2 "$chmodbpf" || exit 1
else
echo "Code signing not performed (no identity)"
echo "Extras code signing not performed (no identity)"
fi
exit 0