From: Valentin Bartenev Date: Tue, 24 Jul 2018 16:25:39 +0000 (+0300) Subject: Fixed configure process with non-default locale. X-Git-Tag: 0.2.3~7 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=ee2a4b5339e9aac16b7b70e6723dd82e4c1e0a89;p=njs.git 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. --- 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