diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-10-30 11:18:05 +0100 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-10-30 13:03:49 +0100 |
commit | df8e399c9bac2dc30d7cf69c2462a81729a3ae69 (patch) | |
tree | 0cb65221ed2c47439955da7b7aecbf326a004f67 /eclass/distutils-r1.eclass | |
parent | dev-python/formencode: Move to virtual/dnspython (diff) | |
download | gentoo-df8e399c9bac2dc30d7cf69c2462a81729a3ae69.tar.gz gentoo-df8e399c9bac2dc30d7cf69c2462a81729a3ae69.tar.bz2 gentoo-df8e399c9bac2dc30d7cf69c2462a81729a3ae69.zip |
eclass: Use consistent place for then in if clause
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 185dd4fb80e4..dbd27a76497c 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -322,8 +322,7 @@ distutils-r1_python_prepare_all() { _distutils-r1_disable_ez_setup - if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]] - then + if [[ ${DISTUTILS_IN_SOURCE_BUILD} && ! ${DISTUTILS_SINGLE_IMPL} ]]; then # create source copies for each implementation python_copy_sources fi |