diff options
author | Mike Gilbert <floppym@gentoo.org> | 2017-05-18 10:42:58 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2017-05-18 10:51:11 -0400 |
commit | a8b377562184a688fa2133c3688e077048a169a1 (patch) | |
tree | 59c6448632ef623becec261e77d3d534c642c49b /eclass | |
parent | media-libs/gexiv2: Removed old. (diff) | |
download | gentoo-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')
-rw-r--r-- | eclass/python-r1.eclass | 2 |
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 } |