diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2017-09-25 16:33:46 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-10-06 12:22:45 +0100 |
commit | d7f1fe6c8419b8c59e601c56245373d094cae298 (patch) | |
tree | b87cf638bf24bb31b14dbfe335c00817e2b9babc /meta/recipes-core/libxml | |
parent | 01257f43e024b49196cb756501b098193d1f6085 (diff) | |
download | openembedded-core-d7f1fe6c8419b8c59e601c56245373d094cae298.tar.gz openembedded-core-d7f1fe6c8419b8c59e601c56245373d094cae298.tar.bz2 openembedded-core-d7f1fe6c8419b8c59e601c56245373d094cae298.zip |
libxml2-ptest: set LC_ALL=en_US.UTF-8
We need to specify UTF-8 in the environment to avoid an error
such as:
UnicodeEncodeError: 'ascii' codec can't encode character '\xe4'
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-core/libxml')
-rw-r--r-- | meta/recipes-core/libxml/libxml2/run-ptest | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-core/libxml/libxml2/run-ptest b/meta/recipes-core/libxml/libxml2/run-ptest index 473d0b67a7..c313d83263 100644 --- a/meta/recipes-core/libxml/libxml2/run-ptest +++ b/meta/recipes-core/libxml/libxml2/run-ptest @@ -1,3 +1,4 @@ #!/bin/sh +export LC_ALL=en_US.UTF-8 make -k runtests |