[Libreoffice-commits] core.git: solenv/gbuild
Tor Lillqvist
tml at iki.fi
Wed Apr 10 01:14:25 PDT 2013
solenv/gbuild/platform/macosx.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 63d46499b08092473e52635dbd2175c72f7896af
Author: Tor Lillqvist <tml at iki.fi>
Date: Wed Apr 10 11:06:32 2013 +0300
Use codesign --timestamp=none for now for the executables
Avoids annoying intermittent "The timestamp service is not available"
errors that break an otherwise nicely progressing build. Hopefully
those errors are caused just by some temporary overload of some Apple
server. Anyway, we will still sign the app bundle in the normal way,
with a timestamp.
Change-Id: I838b39956b87d36138ccbc4e90c2d11e380d690a
diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index 970d6bd..37dbd6c 100644
--- a/solenv/gbuild/platform/macosx.mk
+++ b/solenv/gbuild/platform/macosx.mk
@@ -162,7 +162,7 @@ $(call gb_Helper_abbreviate_dirs,\
ln -sf $(notdir $(1)) $(basename $(1)).jnilib &&) \
$(if $(MACOSX_CODESIGNING_IDENTITY), \
$(if $(filter Executable,$(TARGETTYPE)), \
- codesign --identifier=$(MACOSX_BUNDLE_IDENTIFIER).$(notdir $(1)) --sign $(MACOSX_CODESIGNING_IDENTITY) $(1) &&)) \
+ codesign --timestamp=none --identifier=$(MACOSX_BUNDLE_IDENTIFIER).$(notdir $(1)) --sign $(MACOSX_CODESIGNING_IDENTITY) $(1) &&)) \
:)
endef
More information about the Libreoffice-commits
mailing list