Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Fri, 30 Oct 2015 12:04:07
Message-Id: 1446206629.df8e399c9bac2dc30d7cf69c2462a81729a3ae69.jlec@gentoo
1 commit: df8e399c9bac2dc30d7cf69c2462a81729a3ae69
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 30 10:18:05 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 12:03:49 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8e399c
7
8 eclass: Use consistent place for then in if clause
9
10 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
11
12 eclass/distutils-r1.eclass | 3 +--
13 1 file changed, 1 insertion(+), 2 deletions(-)
14
15 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
16 index 185dd4f..dbd27a7 100644
17 --- a/eclass/distutils-r1.eclass
18 +++ b/eclass/distutils-r1.eclass
19 @@ -322,8 +322,7 @@ distutils-r1_python_prepare_all() {
20
21 _distutils-r1_disable_ez_setup
22
23 - if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]
24 - then
25 + if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]; then
26 # create source copies for each implementation
27 python_copy_sources
28 fi