diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-30 14:27:29 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-30 14:29:23 +0100 |
commit | 283da8a1e1ad0a820b1170307a1ba3ec9bbdeb66 (patch) | |
tree | 25d564f21fcffdbce25eeeb64a8dd47ec2804ce2 /eclass | |
parent | 3e1ba0100e72717cd1ad841961e00eda3b6a0a19 (diff) | |
download | gentoo-283da8a1e1ad0a820b1170307a1ba3ec9bbdeb66.tar.gz gentoo-283da8a1e1ad0a820b1170307a1ba3ec9bbdeb66.tar.xz |
python-utils-r1.eclass: _python_check_locale_sanity, fix quoting issue
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 3dfac9ed008..b163fd8ea1d 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[*]}" ]] |