Kaydet (Commit) 2b71c1a9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Sign the app bundle created by dev-install if an identity is available

Change-Id: If7c61b203b3ca307831187778b951e8310381ca8
üst f33c8056
......@@ -334,6 +334,12 @@ ifeq ($(OS_FOR_BUILD),WNT)
else
ifeq ($(DISABLE_LINKOO),TRUE)
@ooinstall $(DEVINSTALLDIR)/opt
ifeq ($(OS),MACOSX)
identity=`security find-identity -p codesigning -v | grep 'Mac Developer:' | awk '{print $$2}'`; \
if test -n "$$identity"; then \
codesign --verbose --sign $$identity $(DEVINSTALLDIR)/opt/LibreOffice.app; \
fi
endif
@install-gdb-printers -L
else
@ooinstall -l $(DEVINSTALLDIR)/opt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment