[Libreoffice-commits] core.git: Makefile.in

Tor Lillqvist tml at iki.fi
Sun Aug 25 11:30:26 PDT 2013


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

New commits:
commit c89d6bcdb44cb06f7bbd907d191dfbe18cfb0cc5
Author: Tor Lillqvist <tml at 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
 #


More information about the Libreoffice-commits mailing list