From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 93-97-173-237.zone5.bethere.co.uk ([93.97.173.237] helo=tim.rpsys.net) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SDCNi-0004sz-J3 for openembedded-core@lists.openembedded.org; Thu, 29 Mar 2012 12:15:03 +0200 Received: from localhost (localhost [127.0.0.1]) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id q2TA5wkR029434 for ; Thu, 29 Mar 2012 11:05:58 +0100 Received: from tim.rpsys.net ([127.0.0.1]) by localhost (tim.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 27924-08 for ; Thu, 29 Mar 2012 11:05:54 +0100 (BST) Received: from [192.168.3.10] ([192.168.3.10]) (authenticated bits=0) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id q2TA5l6w029427 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 29 Mar 2012 11:05:51 +0100 Message-ID: <1333015547.14983.11.camel@ted> From: Richard Purdie To: Patches and discussions about the oe-core layer Date: Thu, 29 Mar 2012 11:05:47 +0100 In-Reply-To: <49e5bc38bdd5b01d3fb35b4d26a2d189ad2c2c44.1333001415.git.Martin.Jansa@gmail.com> References: <4b37a73d52ca39e73b4d8230269af5d9e2d88c52.1333001415.git.Martin.Jansa@gmail.com> <49e5bc38bdd5b01d3fb35b4d26a2d189ad2c2c44.1333001415.git.Martin.Jansa@gmail.com> X-Mailer: Evolution 3.2.2- Mime-Version: 1.0 X-Virus-Scanned: amavisd-new at rpsys.net Subject: Re: [PATCH 2/2] kernel.bbclass: unify white spaces X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Mar 2012 10:15:03 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Thu, 2012-03-29 at 08:24 +0200, Martin Jansa wrote: > * indentation was with spaces and tabs, unify to use tabs instead of > spaces, because "python populate_packages" expects tabs (or 8 spaces) > and we're doing populate_packages_preppend here > > Signed-off-by: Martin Jansa > --- > meta/classes/kernel.bbclass | 38 +++++++++++++++++++------------------- > 1 files changed, 19 insertions(+), 19 deletions(-) FWIW, we're supposed to be using tabs for shell code and spaces (4) for python. Unfortunately populate_package() is special due to the number of places we append/prepend it and the need to be consistent with whitespace. I'm therefore not sure it makes sense to re-indent the anonymous python. Cheers, Richard