Do not timestamp our code signing

This means that the signature will be invalid when the certificate expires, though it also means that codesign runs faster, and as my certificate is valid for another 4 years, people shouldn’t be using the builds released today when the certificate expires.
This commit is contained in:
Allan Odgaard
2013-01-22 12:08:15 +01:00
parent 7c305f744f
commit 1c164e3ce0

View File

@@ -830,7 +830,7 @@ rule run_application
description = Run $in
rule sign_executable
command = codesign -fs "$identity" $in && touch $out
command = codesign --timestamp=none -fs "$identity" $in && touch $out
description = Sign $in
rule tbz_archive