From 0927d77cfb284704e7586ccde83f8d6fb26cc459 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Fri, 10 Jan 2014 16:51:26 -0600 Subject: [PATCH] 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/7485 Tested-by: Christian Lohmaier Reviewed-by: Christian Lohmaier --- solenv/bin/macosx-codesign-app-bundle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle index 5d65b2aefa5a..99f75659e3ed 100755 --- a/solenv/bin/macosx-codesign-app-bundle +++ b/solenv/bin/macosx-codesign-app-bundle @@ -19,7 +19,7 @@ for V in \ fi done -APP_BUNDLE=$1 +APP_BUNDLE="$1" # Sign dylibs # @@ -72,6 +72,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