summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-01-12 23:13:14 +0000
committerMichał Górny <mgorny@gentoo.org>2013-01-12 23:13:14 +0000
commitd5f64ed1270e6c5782b909f6cdece4676d4f7539 (patch)
treef4b59498bc4d79fbc115e05efea190449acd681a /eclass
parentFix firmware blobs depends to be locked down per each version, similar to how... (diff)
downloadhistorical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.tar.gz
historical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.tar.bz2
historical-d5f64ed1270e6c5782b909f6cdece4676d4f7539.zip
Do not call dummy phases unnecessarily.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/distutils-r1.eclass8
2 files changed, 5 insertions, 8 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 2caa43952466..fbeb60539506 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.609 2013/01/12 14:35:48 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.610 2013/01/12 23:13:14 mgorny Exp $
+
+ 12 Jan 2013; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass:
+ Do not call dummy phases unnecessarily.
12 Jan 2013; Justin Lecher <jlec@gentoo.org> flag-o-matic.eclass:
Don't check for twice, but check for redirect support, #445244; thanks Andrey
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