diff options
author | Werner Koch <[email protected]> | 2023-07-05 09:09:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-07-05 09:10:01 +0000 |
commit | 5825daaf11db278d4134d65b4a28c8ffa2b10480 (patch) | |
tree | 8c2d0e9f8d8dbef8ffddd92c7fbbab9708318d1d | |
parent | kbx: Close file handle when return. (diff) | |
download | gnupg-5825daaf11db278d4134d65b4a28c8ffa2b10480.tar.gz gnupg-5825daaf11db278d4134d65b4a28c8ffa2b10480.zip |
speedo: Do not fail if osslsigncode verify can't be run.
--
-rw-r--r-- | build-aux/speedo.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index 26025b7f5..63209ac17 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -1530,10 +1530,8 @@ sign-installer: if [ -e "$${msifile}" ]; then \ $(call MKSWDB_commands,$${msifile},$${reldate},"wixlib_"); \ fi; \ - echo "speedo: /*" ;\ - echo "speedo: * Verification result" ;\ - echo "speedo: */" ;\ - osslsigncode verify $${exefile} \ + echo "speedo: /* (osslsigncode verify disabled) */" ;\ + echo osslsigncode verify $${exefile} \ ) |