From ca088a6b2bca4fb0e3a02774d5b4b19a79a5e6fe Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Tue, 7 Oct 2025 12:47:23 +0300 Subject: [PATCH] [#4082] Change tools/extract_bnf.sh to LC_ALL=C --- tools/extract_bnf.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/extract_bnf.sh.in b/tools/extract_bnf.sh.in index 151bdf5049..bb73375797 100755 --- a/tools/extract_bnf.sh.in +++ b/tools/extract_bnf.sh.in @@ -39,7 +39,7 @@ if [ -f "${base}.yy" ]; then # bison may produce language specific wording (like "symbole terminalne" # if you system is set to Polish, rather than "Terminals") and this will # confuse our script. - LANG=en_US LANGUAGE=en_US LC_ALL=en_US @YACC@ -v "${base}.yy" -o output + LANG=en_US LANGUAGE=en_US LC_ALL=C @YACC@ -v "${base}.yy" -o output rm -f output output.h ./*.hh mv output.output /tmp/output output=/tmp/output -- 2.47.3