summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-02-04 15:31:34 +0100
committerMichał Górny <mgorny@gentoo.org>2022-02-09 09:43:44 +0100
commitaa491be20fd29459a1278cd56754636edd555202 (patch)
treeb7a4cb9a1cb87743a713ae64aaadf377ee88c0ab /eclass/python-any-r1.eclass
parentpython-utils-r1.eclass: Add function to run python_check_deps() (diff)
downloadgentoo-aa491be20fd29459a1278cd56754636edd555202.tar.gz
gentoo-aa491be20fd29459a1278cd56754636edd555202.tar.bz2
gentoo-aa491be20fd29459a1278cd56754636edd555202.zip
python-any-r1.eclass: Explain the reason for interpreter choice
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-any-r1.eclass')
-rw-r--r--eclass/python-any-r1.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass
index 8d3af399b4be..5c01e9eb6888 100644
--- a/eclass/python-any-r1.eclass
+++ b/eclass/python-any-r1.eclass
@@ -294,7 +294,7 @@ python_setup() {
_python_export "${impls[0]}" EPYTHON PYTHON
_python_wrapper_setup
- einfo "Using ${EPYTHON} to build"
+ einfo "Using ${EPYTHON} to build (via PYTHON_COMPAT_OVERRIDE)"
return
fi
@@ -308,7 +308,7 @@ python_setup() {
elif _python_run_check_deps "${impl}"; then
_python_export EPYTHON PYTHON
_python_wrapper_setup
- einfo "Using ${EPYTHON} to build"
+ einfo "Using ${EPYTHON} to build (via EPYTHON)"
return
fi
fi
@@ -320,7 +320,7 @@ python_setup() {
_python_export "${impl}" EPYTHON PYTHON
if _python_run_check_deps "${impl}"; then
_python_wrapper_setup
- einfo "Using ${EPYTHON} to build"
+ einfo "Using ${EPYTHON} to build (via PYTHON_COMPAT iteration)"
return
fi
done