Makefile.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c89d6bcdb44cb06f7bbd907d191dfbe18cfb0cc5
Author: Tor Lillqvist <t...@iki.fi>
Date:   Sun Aug 25 21:29:40 2013 +0300

    Don't sign the Current symlink in a framework
    
    Change-Id: I14106827d86f798687cdeb560c0df007070469ee

diff --git a/Makefile.in b/Makefile.in
index 260b974..16f18b8 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -306,7 +306,7 @@ ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
 #
        for framework in `find $(DEVINSTALLDIR)/opt/LibreOffice.app -name 
'*.framework' -type d`; do \
         for version in $$framework/Versions/*; do \
-            test -d $$version && codesign --force --verbose 
--prefix=$(MACOSX_BUNDLE_IDENTIFIER). --sign $(MACOSX_CODESIGNING_IDENTITY) 
$$version; \
+            if test ! -L $$version -a -d $$version; then codesign --force 
--verbose --prefix=$(MACOSX_BUNDLE_IDENTIFIER). --sign 
$(MACOSX_CODESIGNING_IDENTITY) $$version; fi; \
         done; \
     done
 #
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to