diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-07-27 09:44:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-08-02 06:04:30 +0200 |
commit | 29688d65fff70633e97759018d52993d59ee8e16 (patch) | |
tree | 9438464e1c9e2cec11e955da18996877a5239fde /eclass/distutils-r1.eclass | |
parent | distutils-r1.eclass: Bump dev-python/sip dependency (diff) | |
download | gentoo-29688d65fff70633e97759018d52993d59ee8e16.tar.gz gentoo-29688d65fff70633e97759018d52993d59ee8e16.tar.bz2 gentoo-29688d65fff70633e97759018d52993d59ee8e16.zip |
distutils-r1.eclass: Pass EPREFIX to addpredict
Pointed out by Arfrever.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index e4ef1919bc7d..495eead1d5fd 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1647,8 +1647,8 @@ 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.9 - addpredict /usr/local # bug 498232 + addpredict "${EPREFIX}/usr/lib/pypy3.9" + addpredict "${EPREFIX}/usr/local" # bug 498232 if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then merge_root=1 |