Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 30 Oct 2015 17:19:07
Message-Id: 1446225465.e6df53cdc79b3200ffb2fcb66a2c8a52ffc5746a.mgorny@gentoo
1 commit: e6df53cdc79b3200ffb2fcb66a2c8a52ffc5746a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 30 17:17:45 2015 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 17:17:45 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6df53cd
7
8 eclass: Revert "Use consistent place for then in if clause"
9
10 The commit was done without contacting the maintainer and does not
11 conform to line width used within the eclass.
12
13 Reverts: df8e399c9b ("eclass: Use consistent place for...")
14
15 eclass/distutils-r1.eclass | 3 ++-
16 1 file changed, 2 insertions(+), 1 deletion(-)
17
18 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
19 index dbd27a7..185dd4f 100644
20 --- a/eclass/distutils-r1.eclass
21 +++ b/eclass/distutils-r1.eclass
22 @@ -322,7 +322,8 @@ distutils-r1_python_prepare_all() {
23
24 _distutils-r1_disable_ez_setup
25
26 - if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]; then
27 + if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]
28 + then
29 # create source copies for each implementation
30 python_copy_sources
31 fi