From 01e902405dd6552763cf66e4077f801a65bc244b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 11 Dec 2015 22:26:45 +0100 Subject: 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. --- eclass/python-any-r1.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'eclass/python-any-r1.eclass') 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 -- cgit v1.2.3