diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-01-10 16:51:26 -0600 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2014-01-17 00:58:11 +0000 |
commit | 5753e1d03d3ba09ddfdc423ae93ea33b528c8a68 (patch) | |
tree | 32580d7c660886af4652e1d4e79c0223a65e9a0b /solenv | |
parent | 49ad0fb1cca4e78e208d058837e83561026d1c87 (diff) |
give an identifier to the app_bundle itself
Language Pack did not seem to pick a decent default value for that
Change-Id: I567f24882e16533e10d8ba91b777ad91dc507b87
Reviewed-on: https://gerrit.libreoffice.org/7385
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'solenv')
-rwxr-xr-x | solenv/bin/macosx-codesign-app-bundle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle index 3b3320481620..07a4996c7c80 100755 --- a/solenv/bin/macosx-codesign-app-bundle +++ b/solenv/bin/macosx-codesign-app-bundle @@ -21,7 +21,7 @@ done echo "codesigning using MACSOX_CODESIGNING_IDENTITY=[${MACOSX_CODESIGNING_IDENTITY?}]" -APP_BUNDLE=$1 +APP_BUNDLE="$1" # Sign dylibs # @@ -76,6 +76,6 @@ if test "$ENABLE_MACOSX_SANDBOX" = "TRUE"; then entitlements="--entitlements $BUILDDIR/lo.xcent" fi -codesign --force --verbose --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements $APP_BUNDLE +codesign --force --verbose --identifier="${MACOSX_BUNDLE_IDENTIFIER}.$(basename ${APP_BUNDLE})" --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements $APP_BUNDLE exit 0 |