From: Bruno Haible Date: Sun, 10 Jul 2022 07:21:20 +0000 (+0200) Subject: announce-gen: Fix internationalization in verification instructions. X-Git-Tag: v1.0~2243 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=70a2dc78340d03bef1559cfec8564378f9267eb9;p=gnulib.git announce-gen: Fix internationalization in verification instructions. * build-aux/announce-gen: Set LC_ALL, not LANG, to "C", to force English output from gpg. --- diff --git a/ChangeLog b/ChangeLog index 891d7c4ea7..a8f0007ca6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2022-07-10 Bruno Haible + + announce-gen: Fix internationalization in verification instructions. + * build-aux/announce-gen: Set LC_ALL, not LANG, to "C", to force English + output from gpg. + 2022-07-10 Bruno Haible lib-symbol-visibility: Improve documentation. diff --git a/build-aux/announce-gen b/build-aux/announce-gen index 320cf4b0d6..3847a568d2 100755 --- a/build-aux/announce-gen +++ b/build-aux/announce-gen @@ -546,7 +546,7 @@ and the corresponding tarball. Then, run a command like this: gpg --verify $tarballs[0].sig EOF - my $gpg_fingerprint = `LANG=C gpg --fingerprint $gpg_key_id | grep -v ^sub`; + my $gpg_fingerprint = `LC_ALL=C gpg --fingerprint $gpg_key_id | grep -v ^sub`; if ($gpg_fingerprint =~ /^pub/) { chop $gpg_fingerprint;