diff options
author | 2013-01-12 23:13:14 +0000 | |
---|---|---|
committer | 2013-01-12 23:13:14 +0000 | |
commit | d5f64ed1270e6c5782b909f6cdece4676d4f7539 (patch) | |
tree | f4b59498bc4d79fbc115e05efea190449acd681a /eclass/distutils-r1.eclass | |
parent | Fix firmware blobs depends to be locked down per each version, similar to how... (diff) | |
download | historical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.tar.gz historical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.tar.bz2 historical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.zip |
Do not call dummy phases unnecessarily.
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 8156a3658043..44081e4e026d 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.40 2013/01/11 01:06:37 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.41 2013/01/12 23:13:14 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -491,8 +491,6 @@ distutils-r1_src_prepare() { _distutils-r1_multijob_init if declare -f python_prepare >/dev/null; then python_foreach_impl distutils-r1_run_phase python_prepare - else - python_foreach_impl distutils-r1_run_phase distutils-r1_python_prepare fi multijob_finish } @@ -501,8 +499,6 @@ distutils-r1_src_configure() { _distutils-r1_multijob_init if declare -f python_configure >/dev/null; then python_foreach_impl distutils-r1_run_phase python_configure - else - python_foreach_impl distutils-r1_run_phase distutils-r1_python_configure fi multijob_finish @@ -533,8 +529,6 @@ distutils-r1_src_test() { _distutils-r1_multijob_init if declare -f python_test >/dev/null; then python_foreach_impl distutils-r1_run_phase python_test - else - python_foreach_impl distutils-r1_run_phase distutils-r1_python_test fi multijob_finish |