diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-20 09:16:27 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-22 06:36:57 +0100 |
commit | e230589a0c796ee7e7b22ed52d1a32ef88763b32 (patch) | |
tree | 6d43c03c25b47f502d75906f1fd8516c18aa8949 /metadata/install-qa-check.d | |
parent | python-utils-r1.eclass: Replace python_export with getters (diff) | |
download | gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.tar.gz gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.tar.bz2 gentoo-e230589a0c796ee7e7b22ed52d1a32ef88763b32.zip |
python-utils-r1.eclass: Mark python_export private
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'metadata/install-qa-check.d')
-rw-r--r-- | metadata/install-qa-check.d/60python-pyc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata/install-qa-check.d/60python-pyc b/metadata/install-qa-check.d/60python-pyc index 644c27243cd2..b2af142fc491 100644 --- a/metadata/install-qa-check.d/60python-pyc +++ b/metadata/install-qa-check.d/60python-pyc @@ -10,7 +10,7 @@ if [[ ${EAPI} == [5-7] ]]; then python_pyc_check() { local impl missing=() outdated=() for impl in "${_PYTHON_SUPPORTED_IMPLS[@]}"; do - python_export "${impl}" EPYTHON PYTHON + _python_export "${impl}" EPYTHON PYTHON [[ -x ${PYTHON} ]] || continue local sitedir=$(python_get_sitedir "${impl}") |