From ee2a4b5339e9aac16b7b70e6723dd82e4c1e0a89 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Tue, 24 Jul 2018 19:25:39 +0300 Subject: [PATCH] Fixed configure process with non-default locale. Overriding LANG might not work, since it has less precedence than LC_* settings. LC_ALL has the highest precedence. --- configure | 4 ++-- nxt/auto/configure | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 01b07c7a..d908a370 100755 --- a/configure +++ b/configure @@ -5,8 +5,8 @@ # Disable localized program messages. -LANG=C -export LANG +LC_ALL=C +export LC_ALL # Stop on error exit status. set -e diff --git a/nxt/auto/configure b/nxt/auto/configure index 933e2a6b..9ffb24d4 100755 --- a/nxt/auto/configure +++ b/nxt/auto/configure @@ -5,8 +5,8 @@ # Disable localized program messages. -LANG=C -export LANG +LC_ALL=C +export LC_ALL # Stop on error exit status. set -e -- 2.47.3