diff options
author | Michał Górny <mgorny@gentoo.org> | 2012-12-07 21:09:22 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2012-12-07 21:09:22 +0000 |
commit | 5eb6a37e62e119dcb58d9ba0d50306390146646e (patch) | |
tree | 6bbad5f0d551e6bf346085a35edc4dc08e390133 /eclass | |
parent | commiting icinga-web 1.8.1 because it was released, and stuff (diff) | |
download | gentoo-2-5eb6a37e62e119dcb58d9ba0d50306390146646e.tar.gz gentoo-2-5eb6a37e62e119dcb58d9ba0d50306390146646e.tar.bz2 gentoo-2-5eb6a37e62e119dcb58d9ba0d50306390146646e.zip |
Report running implementation-common sub-phases verbosely.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/distutils-r1.eclass | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 2e36d2a30d73..44e5db673916 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.551 2012/12/07 18:00:08 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.552 2012/12/07 21:09:22 mgorny Exp $ + + 07 Dec 2012; Michał Górny <mgorny@gentoo.org> distutils-r1.eclass: + Report running implementation-common sub-phases verbosely. 07 Dec 2012; Michał Górny <mgorny@gentoo.org> python-any-r1.eclass: Respect user preferences in python-any-r1 (EPYTHON, eselect-python). diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index bb58d59d8f58..bd7f173ebd6e 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.28 2012/12/07 17:59:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.29 2012/12/07 21:09:22 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -412,6 +412,7 @@ _distutils-r1_run_common_phase() { export EPYTHON PYTHON PYTHONPATH + einfo "common: running ${1}" "${@}" } |