diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-07-23 19:21:33 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-07-23 19:21:33 +0300 |
commit | de885e10cb895751d9994e8ab99bdb56da891d3d (patch) | |
tree | f8b3a777da499bb657486c02e239f513b72e3556 /configure | |
parent | 7c5a710c5543debff0c70cb4839e15e9a1da322b (diff) | |
download | unit-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-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |