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.
This commit is contained in:
Valentin Bartenev 2018-07-23 19:21:33 +03:00
parent 7c5a710c55
commit de885e10cb

4
configure vendored
View file

@ -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