Disable timestamp server for code signing

This slows down signing enormously (10+ seconds) and fails most of the time when internet connectivity is suboptimal (might be related to being behind a proxy).
This commit is contained in:
Allan Odgaard
2014-02-10 13:51:04 +07:00
parent 8ff36f3402
commit d52eda852e

View File

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