Kaydet (Commit) 77b3bd22 authored tarafından Andras Timar's avatar Andras Timar

OS X codesign fix (e.g. --disable-python case)

Change-Id: Icf6b2b9722481492a2d8d70af9dbb34b04a40df7
Reviewed-on: https://gerrit.libreoffice.org/15779Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst 3aeeaccc
......@@ -62,9 +62,12 @@ done
for i in gengal python senddoc unoinfo
do
codesign --verbose --identifier="$MACOSX_BUNDLE_IDENTIFIER.$i" \
--sign "$MACOSX_CODESIGNING_IDENTITY" "$APP_BUNDLE/Contents/MacOS/$i" \
|| exit 1
if [ -f "$APP_BUNDLE/Contents/MacOS/$i" ]
then
codesign --verbose --identifier="$MACOSX_BUNDLE_IDENTIFIER.$i" \
--sign "$MACOSX_CODESIGNING_IDENTITY" "$APP_BUNDLE/Contents/MacOS/$i" \
|| exit 1
fi
done
# Sign frameworks.
......
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