diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-12-11 22:26:45 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-12-11 23:42:33 +0100 |
commit | 01e902405dd6552763cf66e4077f801a65bc244b (patch) | |
tree | 0d27cb44102d8f06c7898a8b9af85534521d3ac9 /eclass/python-utils-r1.eclass | |
parent | package.mask: Mask dev-perl/YAML-Parser-Syck for removal (diff) | |
download | gentoo-01e902405dd6552763cf66e4077f801a65bc244b.tar.gz gentoo-01e902405dd6552763cf66e4077f801a65bc244b.tar.bz2 gentoo-01e902405dd6552763cf66e4077f801a65bc244b.zip |
python*-r1.eclass: Replace non-portable use of 'declare -g'
Replace uses of 'declare -g -r' (bash-4.2+) with 'readonly'. Reported
by Arfrever. This time use split assignments followed by readonly calls
since combined calls work unreliably.
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index cf0e13496245..7830323abc05 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -40,12 +40,13 @@ inherit toolchain-funcs # @INTERNAL # @DESCRIPTION: # All supported Python implementations, most preferred last. -declare -g -r _PYTHON_ALL_IMPLS=( +_PYTHON_ALL_IMPLS=( python2_7 python3_3 python3_4 python3_5 pypy pypy3 jython2_7 ) +readonly _PYTHON_ALL_IMPLS # @FUNCTION: _python_impl_supported # @USAGE: <impl> |