From: Andrei Pavel Date: Tue, 7 Oct 2025 09:47:23 +0000 (+0300) Subject: [#4082] Change tools/extract_bnf.sh to LC_ALL=C X-Git-Tag: Kea-3.1.3~51 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca088a6b2bca4fb0e3a02774d5b4b19a79a5e6fe;p=thirdparty%2Fkea.git [#4082] Change tools/extract_bnf.sh to LC_ALL=C --- 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