commit: 0dc0657b7b2ec07a820551e27fc4eb562b7694f5
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 8 20:56:27 2015 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Nov 8 21:00:42 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc0657b
dev-python/pip: Call PYTHON instead of EPYTHON in src_install
Package-Manager: portage-2.2.23_p26
dev-python/pip/pip-7.1.2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pip/pip-7.1.2.ebuild b/dev-python/pip/pip-7.1.2.ebuild
index 6d4dfee..0b04a71 100644
--- a/dev-python/pip/pip-7.1.2.ebuild
+++ b/dev-python/pip/pip-7.1.2.ebuild
@@ -57,10 +57,10 @@ python_install_all() {
COMPLETION="${T}"/completion.tmp
- ${EPYTHON} pip/__init__.py completion --bash > "${COMPLETION}" || die
+ "${PYTHON}" pip/__init__.py completion --bash > "${COMPLETION}" || die
newbashcomp "${COMPLETION}" ${PN}
- ${EPYTHON} pip/__init__.py completion --zsh > "${COMPLETION}" || die
+ "${PYTHON}" pip/__init__.py completion --zsh > "${COMPLETION}" || die
insinto /usr/share/zsh/site-functions
newins "${COMPLETION}" _pip
}