summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-01-14 17:01:54 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-01-14 17:01:54 +0100
commit9505fc0822ea28864c2773d63220a59b014d3406 (patch)
tree8793205f23c5a6819008513bfd69b62e80283aca /solenv
parentabdb32cbad1b85d2d47ad954aa55b468b078a05e (diff)
cosmetics: no need for that echo when using codesign with --verbose
Change-Id: I7e51445e890bd1ed5bcafb9cc713c6f5fad24631
Diffstat (limited to 'solenv')
-rwxr-xr-xsolenv/bin/macosx-codesign-app-bundle1
1 files changed, 0 insertions, 1 deletions
diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle
index 6db54cd4141c..50057b6e0595 100755
--- a/solenv/bin/macosx-codesign-app-bundle
+++ b/solenv/bin/macosx-codesign-app-bundle
@@ -39,7 +39,6 @@ fi
# order matters/screws things up otherwise
find -d "$APP_BUNDLE" \( -name '*.jnilib' \) ! -type l |
while read file; do
- echo "signing $file"
id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'`
codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" || exit 1
done