diff options
author | Werner Koch <[email protected]> | 2024-04-25 13:50:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-04-26 13:17:48 +0000 |
commit | 351f5e814b22654809f162f77249a385f109dcc7 (patch) | |
tree | b6295297f0745b431574e80ed0b0468b4fdf277e /build-aux | |
parent | agent:kem:ecc: Support a key on smartcard. (diff) | |
download | gnupg-351f5e814b22654809f162f77249a385f109dcc7.tar.gz gnupg-351f5e814b22654809f162f77249a385f109dcc7.zip |
speedo: Set gnupg_ver macro to gnupg26_ver.
--
Also fixed a syntax erro rin AUTHENTICODE_sign
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/speedo.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index 3f515306b..a81b75bc3 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -303,7 +303,7 @@ endif # Version numbers of the released packages gnupg_ver_this = $(shell cat $(topsrc)/VERSION) -gnupg_ver := $(shell awk '$$1=="gnupg24_ver" {print $$2}' swdb.lst) +gnupg_ver := $(shell awk '$$1=="gnupg26_ver" {print $$2}' swdb.lst) libgpg_error_ver := $(shell awk '$$1=="libgpg_error_ver" {print $$2}' swdb.lst) libgpg_error_sha1:= $(shell awk '$$1=="libgpg_error_sha1" {print $$2}' swdb.lst) @@ -1292,7 +1292,7 @@ endef # Sign the file $1 and save the result as $2 define AUTHENTICODE_sign - (set -e; + (set -e; \ if gpg-authcode-sign.sh --version >/dev/null; then \ gpg-authcode-sign.sh "$(1)" "$(2)"; \ else \ |