diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-23 06:01:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-23 06:36:33 +0200 |
commit | 8ef986658021d85a990d1049039614a29054cc43 (patch) | |
tree | f2b154047a64005828561c6e598c5b8d7a4af794 /eclass | |
parent | python-utils-r1.eclass: Add python3_12 target (diff) | |
download | gentoo-8ef986658021d85a990d1049039614a29054cc43.tar.gz gentoo-8ef986658021d85a990d1049039614a29054cc43.tar.bz2 gentoo-8ef986658021d85a990d1049039614a29054cc43.zip |
eclass/tests/python-utils-r1.sh: Fix patterns for pypy3.10
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rwxr-xr-x | eclass/tests/python-utils-r1.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/tests/python-utils-r1.sh b/eclass/tests/python-utils-r1.sh index ee09ae2c877c..635d49decbdd 100755 --- a/eclass/tests/python-utils-r1.sh +++ b/eclass/tests/python-utils-r1.sh @@ -123,8 +123,8 @@ eindent test_var EPYTHON pypy3 pypy3 test_var PYTHON pypy3 /usr/bin/pypy3 if [[ -x /usr/bin/pypy3 ]]; then - test_var PYTHON_SITEDIR pypy3 "/usr/lib*/pypy3.?/site-packages" - test_var PYTHON_INCLUDEDIR pypy3 "/usr/include/pypy3.?" + test_var PYTHON_SITEDIR pypy3 "/usr/lib*/pypy3.*/site-packages" + test_var PYTHON_INCLUDEDIR pypy3 "/usr/include/pypy3.*" fi test_var PYTHON_PKG_DEP pypy3 '*dev-python/pypy3*:0=' test_var PYTHON_SCRIPTDIR pypy3 /usr/lib/python-exec/pypy3 |