summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2018-07-23 19:21:33 +0300
committerValentin Bartenev <vbart@nginx.com>2018-07-23 19:21:33 +0300
commitde885e10cb895751d9994e8ab99bdb56da891d3d (patch)
treef8b3a777da499bb657486c02e239f513b72e3556 /configure
parent7c5a710c5543debff0c70cb4839e15e9a1da322b (diff)
downloadunit-de885e10cb895751d9994e8ab99bdb56da891d3d.tar.gz
unit-de885e10cb895751d9994e8ab99bdb56da891d3d.tar.bz2
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.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files 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