diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-25 21:29:40 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-25 21:29:40 +0300 |
commit | c89d6bcdb44cb06f7bbd907d191dfbe18cfb0cc5 (patch) | |
tree | 71917023b87c4ae854349573f132f71124022e92 /Makefile.in | |
parent | 0aeba08d3e0ee611883fc5d415b0c87319ca31e8 (diff) |
Don't sign the Current symlink in a framework
Change-Id: I14106827d86f798687cdeb560c0df007070469ee
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 260b974e9843..16f18b80ff02 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 # |