summaryrefslogtreecommitdiff
path: root/eclass/python-utils-r1.eclass
diff options
context:
space:
mode:
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r--eclass/python-utils-r1.eclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 860250cbe1eb..ef05a58e1b13 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -208,6 +208,8 @@ _python_impl_matches() {
local impl=${1/./_} pattern
shift
+ # note: do not add "return 1" below, the function is supposed
+ # to iterate until it matches something
for pattern; do
case ${pattern} in
-2|python2*|pypy)
@@ -229,7 +231,6 @@ _python_impl_matches() {
return 0
;;
3.10)
- return 1
;;
3.8|3.9|3.1[1-3])
[[ ${impl%t} == python${pattern/./_} || ${impl} == pypy${pattern/./_} ]] &&