Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sat, 24 Sep 2016 00:57:21
Message-Id: 1474678569.78220396efc1fef53f945870e0b1b5768605a440.floppym@gentoo
1 commit: 78220396efc1fef53f945870e0b1b5768605a440
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 00:54:06 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 00:56:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78220396
7
8 python-utils-r1.eclass: override LC_ALL in _python_check_locale_sanity
9
10 eclass/python-utils-r1.eclass | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
14 index 717123c..bf833eb 100644
15 --- a/eclass/python-utils-r1.eclass
16 +++ b/eclass/python-utils-r1.eclass
17 @@ -1207,7 +1207,7 @@ python_fix_shebang() {
18 # Check whether the specified locale sanely maps between lowercase
19 # and uppercase ASCII characters.
20 _python_check_locale_sanity() {
21 - local -x LC_CTYPE=${1}
22 + local -x LC_ALL=${1}
23 local IFS=
24
25 local lc=( {a..z} )