summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2017-05-18 10:42:58 -0400
committerMike Gilbert <floppym@gentoo.org>2017-05-18 10:51:11 -0400
commita8b377562184a688fa2133c3688e077048a169a1 (patch)
tree59c6448632ef623becec261e77d3d534c642c49b /eclass/python-r1.eclass
parentmedia-libs/gexiv2: Removed old. (diff)
downloadgentoo-a8b377562184a688fa2133c3688e077048a169a1.tar.gz
gentoo-a8b377562184a688fa2133c3688e077048a169a1.tar.bz2
gentoo-a8b377562184a688fa2133c3688e077048a169a1.zip
python-r1.eclass: fix python_setup
A non-existant "impl" variable was being passed to _python_impl_matches.
Diffstat (limited to 'eclass/python-r1.eclass')
-rw-r--r--eclass/python-r1.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/python-r1.eclass b/eclass/python-r1.eclass
index 6181ec32af61..8de0a851856c 100644
--- a/eclass/python-r1.eclass
+++ b/eclass/python-r1.eclass
@@ -628,7 +628,7 @@ python_setup() {
local best_impl patterns=( "${@-*}" )
_python_try_impl() {
- if _python_impl_matches "${impl}" "${patterns[@]}"; then
+ if _python_impl_matches "${EPYTHON}" "${patterns[@]}"; then
best_impl=${EPYTHON}
fi
}