diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-04 14:20:52 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-05 08:57:39 +0100 |
commit | ecfff63ca311633cacb638e44aed726c41cdaa30 (patch) | |
tree | 00570b28d7878467031b60b00a3c1af56a921ed9 /eclass | |
parent | python-r1.eclass: Report impl used by python_setup (diff) | |
download | gentoo-ecfff63ca311633cacb638e44aed726c41cdaa30.tar.gz gentoo-ecfff63ca311633cacb638e44aed726c41cdaa30.tar.bz2 gentoo-ecfff63ca311633cacb638e44aed726c41cdaa30.zip |
python-any-r1.eclass: Report impl used by python_setup
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/python-any-r1.eclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 5d74c8acd3e4..66c6965c04ea 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -301,6 +301,7 @@ python_setup() { python_export "${impls[0]}" EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi @@ -309,6 +310,7 @@ python_setup() { if _python_EPYTHON_supported "${EPYTHON}"; then python_export EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi fi @@ -324,6 +326,7 @@ python_setup() { elif _python_EPYTHON_supported "${i}"; then python_export "${i}" EPYTHON PYTHON python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi done @@ -334,6 +337,7 @@ python_setup() { python_export "${_PYTHON_SUPPORTED_IMPLS[i]}" EPYTHON PYTHON if _python_EPYTHON_supported "${EPYTHON}"; then python_wrapper_setup + einfo "Using ${EPYTHON} to build" return fi done |