summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRepository QA checks <repo-qa-checks@gentoo.org>2016-09-24 01:14:02 +0000
committerRepository QA checks <repo-qa-checks@gentoo.org>2016-09-24 01:14:02 +0000
commita82262368d3bf6b985c63bbb616c49c1c2f70363 (patch)
treebce07cc7ce7b08f2650756758d45d0fa2c2e3f97
parent2016-09-24 00:49:29 UTC (diff)
parentpython-utils-r1.eclass: override LC_ALL in _python_check_locale_sanity (diff)
downloadgentoo-a82262368d3bf6b985c63bbb616c49c1c2f70363.tar.gz
gentoo-a82262368d3bf6b985c63bbb616c49c1c2f70363.tar.bz2
gentoo-a82262368d3bf6b985c63bbb616c49c1c2f70363.zip
Merge updates from master
-rw-r--r--eclass/python-utils-r1.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 717123cc5f96..bf833eb99007 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1207,7 +1207,7 @@ python_fix_shebang() {
# Check whether the specified locale sanely maps between lowercase
# and uppercase ASCII characters.
_python_check_locale_sanity() {
- local -x LC_CTYPE=${1}
+ local -x LC_ALL=${1}
local IFS=
local lc=( {a..z} )