diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-07-26 08:24:26 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-07-26 08:32:05 +0200 |
commit | 22a6e0051cf64266873d2281ac5f27ce427ddec0 (patch) | |
tree | 010ee192b409707076d885d9d5837ba95649483a /eclass/distutils-r1.eclass | |
parent | distutils-r1.eclass: Remove unneccess. addpredict for PEP517 mode (diff) | |
download | gentoo-22a6e0051cf64266873d2281ac5f27ce427ddec0.tar.gz gentoo-22a6e0051cf64266873d2281ac5f27ce427ddec0.tar.bz2 gentoo-22a6e0051cf64266873d2281ac5f27ce427ddec0.zip |
distutils-r1.eclass: Update .pyc addpredicts for pypy3.9
Update the addpredicts for legacy mode to cover pypy3.9 directory,
and remove the rule for stale Portage directory.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 95fd0756ff02..e64eedec5fd3 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1647,8 +1647,7 @@ distutils-r1_python_install() { # python likes to compile any module it sees, which triggers sandbox # failures if some packages haven't compiled their modules yet. addpredict "${EPREFIX}/usr/lib/${EPYTHON}" - addpredict /usr/lib/pypy3.8 - addpredict /usr/lib/portage/pym + addpredict /usr/lib/pypy3.9 addpredict /usr/local # bug 498232 if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then |