solenv/bin/macosx-codesign-app-bundle |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 49ad0fb1cca4e78e208d058837e83561026d1c87
Author: Norbert Thiebaud <[email protected]>
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 <[email protected]>
    Tested-by: Christian Lohmaier <[email protected]>

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 | \
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to