diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-11-26 10:05:11 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-11-26 10:05:11 +0000 |
commit | 4ae0043ac80e98def5e39f622870ba0a1b40e9af (patch) | |
tree | e7c6f891a3bf535fb66acfdfb351d872d799d0aa /eclass/distutils-r1.eclass | |
parent | Version bump. (diff) | |
download | historical-4ae0043ac80e98def5e39f622870ba0a1b40e9af.tar.gz historical-4ae0043ac80e98def5e39f622870ba0a1b40e9af.tar.bz2 historical-4ae0043ac80e98def5e39f622870ba0a1b40e9af.zip |
Run EXPORT_FUNCTIONS even if re-inheriting, to preserve the expected phase overrides.
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 129cd49c9312..fc9416b6da7f 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.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/distutils-r1.eclass,v 1.19 2012/11/24 21:07:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.20 2012/11/26 10:05:11 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -59,8 +59,12 @@ if [[ ! ${_DISTUTILS_R1} ]]; then inherit eutils python-r1 +fi + EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install +if [[ ! ${_DISTUTILS_R1} ]]; then + RDEPEND=${PYTHON_DEPS} DEPEND=${PYTHON_DEPS} |