From de885e10cb895751d9994e8ab99bdb56da891d3d Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Mon, 23 Jul 2018 19:21:33 +0300 Subject: 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. This should resolve issue #121 on GitHub. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index fedfef78..db64cb1e 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 -- cgit