commit: 283da8a1e1ad0a820b1170307a1ba3ec9bbdeb66
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 13:27:29 2015 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 30 13:29:23 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=283da8a1
python-utils-r1.eclass: _python_check_locale_sanity, fix quoting issue
eclass/python-utils-r1.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 3dfac9e..b163fd8 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -1170,7 +1170,7 @@ _python_check_locale_sanity() {
local lc=( {a..z} )
local uc=( {A..Z} )
- local input=${lc[*]}${uc[*]}
+ local input="${lc[*]}${uc[*]}"
local output=$(tr '[:lower:][:upper:]' '[:upper:][:lower:]'
<<<"${input}")
[[ ${output} == "${uc[*]}${lc[*]}" ]]