[Libreoffice-commits] core.git: configure.ac
Tor Lillqvist
tml at iki.fi
Thu May 16 03:34:59 PDT 2013
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit d1a5da152a6814a4ee00fd04a2c682cc582e063a
Author: Tor Lillqvist <tml at iki.fi>
Date: Thu May 16 13:33:00 2013 +0300
Handle --enable-macosx-code-signing=no properly
Change-Id: Ib080d0317ea0c34e12db27f6ed080b3928cb165d
diff --git a/configure.ac b/configure.ac
index cbd7c79..565aef9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2598,7 +2598,7 @@ if test "$_os" = "Darwin"; then
pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'`
AC_MSG_RESULT([yes, using the identity $MACOSX_CODESIGNING_IDENTITY for $pretty_name])
fi
- elif test -n "$enable_macosx_code_signing"; then
+ elif test -n "$enable_macosx_code_signing" -a "$enable_macosx_code_signing" != no ; then
MACOSX_CODESIGNING_IDENTITY=$enable_macosx_code_signing
pretty_name=`security find-identity -p codesigning -v | grep "$MACOSX_CODESIGNING_IDENTITY" | sed -e 's/^[[^"]]*"//' -e 's/"//'`
AC_MSG_RESULT([yes, using the identity $MACOSX_CODESIGNING_IDENTITY for $pretty_name])
More information about the Libreoffice-commits
mailing list