configure.ac | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-)
New commits: commit 928ec2817e0800ac3de3f669701d652a88b1fe4b Author: Jeff Huang <[email protected]> AuthorDate: Wed Oct 15 15:25:53 2025 +0800 Commit: Christian Lohmaier <[email protected]> CommitDate: Thu Oct 16 13:00:10 2025 +0200 configure.ac: Correct macOS code signing comments to prevent confusion. Co-authored-by: Franklin Weng <[email protected]> Change-Id: Iad2a35d70766605f2b5656c0a769c7307fb85528 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192427 Reviewed-by: Buo-ren Lin (OSSII) <[email protected]> Tested-by: Jenkins Reviewed-by: Christian Lohmaier <[email protected]> diff --git a/configure.ac b/configure.ac index a584da44256a..86d4e0faf4fa 100644 --- a/configure.ac +++ b/configure.ac @@ -3904,11 +3904,9 @@ if test $_os = Darwin; then if test "$enable_macosx_code_signing" = yes; then # By default use the first suitable certificate (?). - # https://stackoverflow.com/questions/13196291/difference-between-mac-developer-and-3rd-party-mac-developer-application - # says that the "Mac Developer" certificate is useful just for self-testing. For distribution - # outside the Mac App Store, use the "Developer ID Application" one, and for distribution in - # the App Store, the "3rd Party Mac Developer" one. I think it works best to the - # "Developer ID Application" one. + # https://developer.apple.com/documentation/xcode/creating-distribution-signed-code-for-the-mac#Confirm-your-code-signing-identity + # For distribution outside the Mac App Store, use the "Developer ID Application" one. + # For distribution in the App Store, please use "Apple Distribution" one. identity="Developer ID Application:" else identity=$enable_macosx_code_signing
