summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-08-25 21:29:40 +0300
committerTor Lillqvist <tml@iki.fi>2013-08-25 21:29:40 +0300
commitc89d6bcdb44cb06f7bbd907d191dfbe18cfb0cc5 (patch)
tree71917023b87c4ae854349573f132f71124022e92 /Makefile.in
parent0aeba08d3e0ee611883fc5d415b0c87319ca31e8 (diff)
Don't sign the Current symlink in a framework
Change-Id: I14106827d86f798687cdeb560c0df007070469ee
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
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
#