diff options
author | Sam James <sam@gentoo.org> | 2022-04-11 23:25:49 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-11 23:25:49 +0100 |
commit | 65701019d3531f43e471c0060fe9724bf3b7751a (patch) | |
tree | 4cdb291e6bfdce624ad8bb2dd7798fcaecba0682 /eclass/distutils-r1.eclass | |
parent | app-emacs/flycheck-guile: new package; add version 0.2 (diff) | |
download | gentoo-65701019d3531f43e471c0060fe9724bf3b7751a.tar.gz gentoo-65701019d3531f43e471c0060fe9724bf3b7751a.tar.bz2 gentoo-65701019d3531f43e471c0060fe9724bf3b7751a.zip |
distutils-r1.eclass: don't call copy_egg_info if USE_PEP517=setuptools
Fixes: 6451cf647f04b31a56ea2dc8c3f84a70c2468f87
Thanks-to: Ionen Wolkens <ionen@gentoo.org>
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 2c3aee011847..7a7bdb4a4d39 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1168,7 +1168,7 @@ distutils-r1_python_compile() { eqawarn "be picked up by setuptools when building for another interpreter." eqawarn "Please remove this directory prior to building." fi - else + elif [[ ! ${DISTUTILS_USE_PEP517} ]]; then _distutils-r1_copy_egg_info fi |