summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-07-10 09:21:20 +0200
committerBruno Haible <bruno@clisp.org>2022-07-10 09:21:20 +0200
commit70a2dc78340d03bef1559cfec8564378f9267eb9 (patch)
tree464afe47b217c619cf6a1d2d4b373bb6a566aa38 /build-aux/announce-gen
parent5bb8bf18d52fba2d94242a1dc3eff78e7b5a8264 (diff)
downloadgnulib-70a2dc78340d03bef1559cfec8564378f9267eb9.tar.gz
announce-gen: Fix internationalization in verification instructions.
* build-aux/announce-gen: Set LC_ALL, not LANG, to "C", to force English output from gpg.
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen2
1 files changed, 1 insertions, 1 deletions
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;