[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - solenv/bin
Norbert Thiebaud
nthiebaud at gmail.com
Thu Jan 16 16:29:38 PST 2014
solenv/bin/macosx-codesign-app-bundle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 49ad0fb1cca4e78e208d058837e83561026d1c87
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date: Fri Jan 10 16:55:02 2014 -0600
codesign: do not sign stuff that is inside the bundled python
bundled framework are signed as a 'framework'..
it does not seems like we should sign random piece of it while
attempting to sign the App itself
Change-Id: Ia9ea34f5ba484e4a15337aa4edabd86e3b5fe406
Reviewed-on: https://gerrit.libreoffice.org/7387
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle
index 1546d8f..3b33204 100755
--- a/solenv/bin/macosx-codesign-app-bundle
+++ b/solenv/bin/macosx-codesign-app-bundle
@@ -36,7 +36,7 @@ APP_BUNDLE=$1
# that codesign will contact the timestamp server just once for all
# mentioned on the command line.
-find $APP_BUNDLE \( -name '*.dylib' -or -name '*.so' \) ! -type l | \
+find $APP_BUNDLE \( -name '*.dylib' -or -name '*.so' \) ! -type l | grep -v "LibreOfficePython\.framework" | \
xargs codesign --verbose --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY"
find $APP_BUNDLE -name '*.dylib.*' ! -type l | \
More information about the Libreoffice-commits
mailing list