diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-01-25 10:51:29 +1300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-01-25 10:51:32 +1300 |
commit | 75d7d7a83c13e2be80ffd00677a46a4d64e7e5eb (patch) | |
tree | 5dafe286a145f3a251c7d2a7b8589c7b00e17abe | |
parent | f2187686380eb9df74189486d1d9d913fab0587d (diff) | |
download | subsurface-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/sign | 2 |
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 |