diff options
author | agardner <agardner@linuxfoundation.org> | 2018-04-05 13:06:18 -0400 |
---|---|---|
committer | agardner <agardner@linuxfoundation.org> | 2018-04-05 15:38:58 -0400 |
commit | bb4002cc0d5f33c45320dfd892c773c6737698cb (patch) | |
tree | b474693f23fb4b6078aab2a8b9368986d2a51349 /xci/files | |
parent | 4bc92b7148d629c5082eaf7d49c98146b017ed04 (diff) |
export LANG="C" rather than export LANG="c"
opnfv@linux-r4ap:~$ export LANG="C"
opnfv@linux-r4ap:~$ perl -E exit
opnfv@linux-r4ap:~$ export LANG="c"
opnfv@linux-r4ap:~$ perl -E exit
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "en_US.UTF-8",
LC_ALL = "",
LANG = "c"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
paste of deploy failing: https://hastebin.com/fufananewa.sql
Change-Id: Id1ef2430887251044700e03fc1f294ad18adf90a
Signed-off-by: agardner <agardner@linuxfoundation.org>
Diffstat (limited to 'xci/files')
-rw-r--r-- | xci/files/install-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xci/files/install-lib.sh b/xci/files/install-lib.sh index 92d1f065..a01e7e01 100644 --- a/xci/files/install-lib.sh +++ b/xci/files/install-lib.sh @@ -22,7 +22,7 @@ function install_ansible() { declare -A PKG_MAP # workaround: for latest bindep to work, it needs to use en_US local - export LANG=c + export LANG="C" CHECK_CMD_PKGS=( gcc |