[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - solenv/bin

Thorsten Behrens tbehrens at suse.com
Tue Feb 26 16:33:41 PST 2013


 solenv/bin/modules/installer/simplepackage.pm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 38c2da62f8992133109507664a48459467a290da
Author: Thorsten Behrens <tbehrens at suse.com>
Date:   Wed Feb 27 01:31:34 2013 +0100

    Fix build on Mac
    
    Without this codesigning is unconditionally tried, unconditionally
    breaking the build.

diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm
index 26911a4..32d3066 100755
--- a/solenv/bin/modules/installer/simplepackage.pm
+++ b/solenv/bin/modules/installer/simplepackage.pm
@@ -420,7 +420,7 @@ sub create_package
         }
 	else
 	{
-	    if (defined($ENV{'MACOSX_CODESIGNING_IDENTITY'}))
+	    if (defined($ENV{'MACOSX_CODESIGNING_IDENTITY'}) && $ENV{'MACOSX_CODESIGNING_IDENTITY'} ne "" )
 	    {
 		# Just sign the .app as a whole, which means signing
 		# the CFBundleExecutable from Info.plist,


More information about the Libreoffice-commits mailing list