summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-10-19 19:55:46 +0000
committerMichał Górny <mgorny@gentoo.org>2012-10-19 19:55:46 +0000
commitb99dce33ac847b8c36c685e5aa9a7732a009d220 (patch)
tree19d663cd0197388499304969de1889e98a29e0ef /eclass/distutils-r1.eclass
parentAdd ~amd64, wrt bug #438866 (diff)
downloadgentoo-2-b99dce33ac847b8c36c685e5aa9a7732a009d220.tar.gz
gentoo-2-b99dce33ac847b8c36c685e5aa9a7732a009d220.tar.bz2
gentoo-2-b99dce33ac847b8c36c685e5aa9a7732a009d220.zip
Call no-op default phases for each implementation (meaningless but more correct).
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r--eclass/distutils-r1.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index 2ab80ae04d3c..385274e5713d 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.3 2012/10/15 15:01:18 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.4 2012/10/19 19:55:46 mgorny Exp $
# @ECLASS: distutils-r1
# @MAINTAINER:
@@ -267,7 +267,7 @@ distutils-r1_src_prepare() {
if declare -f python_prepare >/dev/null; then
python_foreach_impl python_prepare
else
- distutils-r1_python_prepare
+ python_foreach_impl distutils-r1_python_prepare
fi
}
@@ -275,7 +275,7 @@ distutils-r1_src_configure() {
if declare -f python_configure >/dev/null; then
python_foreach_impl python_configure
else
- distutils-r1_python_configure
+ python_foreach_impl distutils-r1_python_configure
fi
if declare -f python_configure_all >/dev/null; then
@@ -303,7 +303,7 @@ distutils-r1_src_test() {
if declare -f python_test >/dev/null; then
python_foreach_impl python_test
else
- distutils-r1_python_test
+ python_foreach_impl distutils-r1_python_test
fi
if declare -f python_test_all >/dev/null; then