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-any-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-any-r1.eclass')
-rw-r--r-- | eclass/python-any-r1.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 82ead76edf18..721ba4520625 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -133,7 +133,8 @@ _python_any_set_globals() { PYTHON_DEPS="${PYTHON_PKG_DEP} ${PYTHON_DEPS}" done - declare -g -r PYTHON_DEPS="|| ( ${PYTHON_DEPS})" + PYTHON_DEPS="|| ( ${PYTHON_DEPS})" + readonly PYTHON_DEPS } _python_any_set_globals unset -f _python_any_set_globals |