From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 54D1213888F for ; Fri, 30 Oct 2015 12:04:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24CE1E07A3; Fri, 30 Oct 2015 12:04:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8DDAD21C004 for ; Fri, 30 Oct 2015 12:04:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B79E7340C80 for ; Fri, 30 Oct 2015 12:04:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 942511AFF for ; Fri, 30 Oct 2015 12:03:59 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1446206629.df8e399c9bac2dc30d7cf69c2462a81729a3ae69.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/distutils-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: df8e399c9bac2dc30d7cf69c2462a81729a3ae69 X-VCS-Branch: master Date: Fri, 30 Oct 2015 12:03:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6e06993c-a068-428f-a496-496302c7972c X-Archives-Hash: c4d965b477e614cdd780f25eff743362 commit: df8e399c9bac2dc30d7cf69c2462a81729a3ae69 Author: Justin Lecher gentoo org> AuthorDate: Fri Oct 30 10:18:05 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Oct 30 12:03:49 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8e399c eclass: Use consistent place for then in if clause Signed-off-by: Justin Lecher gentoo.org> eclass/distutils-r1.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 185dd4f..dbd27a7 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