diff options
author | 2021-06-29 03:44:43 +0100 | |
---|---|---|
committer | 2021-06-29 03:44:43 +0100 | |
commit | f01ad6725a9262473afb14d9ea13a9eb2f6c373f (patch) | |
tree | fcd72b7164c2abd19abf0a303624401b93890734 /eclass/distutils-r1.eclass | |
parent | games-board/awale: workaround install race condition (diff) | |
download | gentoo-f01ad6725a9262473afb14d9ea13a9eb2f6c373f.tar.gz gentoo-f01ad6725a9262473afb14d9ea13a9eb2f6c373f.tar.bz2 gentoo-f01ad6725a9262473afb14d9ea13a9eb2f6c373f.zip |
distutils-r1.eclass: fix distutils_enable_tests (${PYTHON_MULTI_USEDEP} usage)
We banned PYTHON_MULTI_USEDEP in EAPI 8, so this internal usage causes
breakage when using distutils_enable_tests in an EAPI 8 ebuild.
Reported-by: Marco Scardovi (scardracs) <marco@scardovi.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index a26130f7a194..238ba033c5d8 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -421,7 +421,7 @@ distutils_enable_tests() { test_deps+=" ${test_pkg}[${PYTHON_USEDEP}]" else test_deps+=" $(python_gen_cond_dep " - ${test_pkg}[\${PYTHON_MULTI_USEDEP}] + ${test_pkg}[\${PYTHON_USEDEP}] ")" fi fi |