diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-04-30 08:25:31 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2012-04-30 08:25:31 +0000 |
commit | 900d9ec981a67a78ffa77fc3725abaac3ca4be26 (patch) | |
tree | 5c9776c2eabd1e8700ad8df8546928b711fb0b41 /eclass/python-distutils-ng.eclass | |
parent | Fix ruby 1.8 hash ordering test failures, bug 397657. Fix racc file generatio... (diff) | |
download | historical-900d9ec981a67a78ffa77fc3725abaac3ca4be26.tar.gz historical-900d9ec981a67a78ffa77fc3725abaac3ca4be26.tar.bz2 historical-900d9ec981a67a78ffa77fc3725abaac3ca4be26.zip |
Correctly chdir to ${S}, see bug #411563.
Diffstat (limited to 'eclass/python-distutils-ng.eclass')
-rw-r--r-- | eclass/python-distutils-ng.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/python-distutils-ng.eclass b/eclass/python-distutils-ng.eclass index 9e48c9b0713d..f115343fd32d 100644 --- a/eclass/python-distutils-ng.eclass +++ b/eclass/python-distutils-ng.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.11 2012/04/03 19:21:45 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python-distutils-ng.eclass,v 1.12 2012/04/30 08:25:31 nelchael Exp $ # @ECLASS: python-distutils-ng # @MAINTAINER: @@ -388,7 +388,9 @@ python-distutils-ng_src_install() { S="${WORKDIR}/${_PACKAGE_SPECIFIC_S}" if type python_install_all &> /dev/null; then einfo "Running python_install_all in ${S} for all" + pushd "${S}" &> /dev/null python_install_all + popd &> /dev/null fi for impl in ${PYTHON_COMPAT}; do |