aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-01-25 10:51:29 +1300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-01-25 10:51:32 +1300
commit75d7d7a83c13e2be80ffd00677a46a4d64e7e5eb (patch)
tree5dafe286a145f3a251c7d2a7b8589c7b00e17abe
parentf2187686380eb9df74189486d1d9d913fab0587d (diff)
downloadsubsurface-75d7d7a83c13e2be80ffd00677a46a4d64e7e5eb.tar.gz
build system: use --force when signing Mac bundle
This avoids a common problem if some of the libraries copied into the budle where previously signed. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--packaging/macosx/sign2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/macosx/sign b/packaging/macosx/sign
index 9a0d706f9..0b45d5f6d 100644
--- a/packaging/macosx/sign
+++ b/packaging/macosx/sign
@@ -11,4 +11,4 @@ rm -rf Subsurface.app/Contents/Frameworks/QtDBus.framework
# remove anything codesign doesn't want us to sign
find Subsurface.app/Contents/Frameworks/ \( -name Headers -o -name \*.prl -o -name \*_debug \) -print0 | xargs -0 rm -rf
-codesign --keychain $HOME/Library/Keychains/login.keychain -s "Developer ID Application: Dirk Hohndel" --deep Subsurface.app
+codesign --keychain $HOME/Library/Keychains/login.keychain -s "Developer ID Application: Dirk Hohndel" --deep --force Subsurface.app