adding LANG to avoid gcc docker warnings

This commit is contained in:
Bryan Stansell 2019-03-24 10:26:52 -07:00
parent a18c8bc6c4
commit b0c99fe46d
No known key found for this signature in database
GPG Key ID: 28E4B7253029E7F6

View File

@ -5,4 +5,14 @@ set -e
curl -s -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess'
curl -s -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub'
autoreconf
# We set lang to avoid this with the gcc docker image on cirrus:
#
# ./package/setup-configure
# perl: warning: Setting locale failed.
# perl: warning: Please check that your locale settings:
# LANGUAGE = (unset),
# LC_ALL = (unset),
# LANG = "en_US.UTF-8"
# are supported and installed on your system.
LANG=C autoreconf