From patchwork Fri May 28 14:43:24 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steven Rostedt X-Patchwork-Id: 102907 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o4SEmp8l021148 for ; Fri, 28 May 2010 14:48:51 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932474Ab0E1Orw (ORCPT ); Fri, 28 May 2010 10:47:52 -0400 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.123]:40455 "EHLO hrndva-omtalb.mail.rr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758332Ab0E1Orv (ORCPT ); Fri, 28 May 2010 10:47:51 -0400 X-Authority-Analysis: v=1.1 cv=muTmBHIsIIrvj5np50lvqqEF3x9MmSj/zDSU9q1ni6E= c=1 sm=0 a=Q5mx56m-u-UA:10 a=VZGMvYHv9TIA:10 a=GzHTLUccyWwA:10 a=gMqfjgEr1zLu/65IO0LwxA==:17 a=meVymXHHAAAA:8 a=VC6MDQSm5cczis9e8uwA:9 a=d9QrqFu1GRKIDRG8dLddgSBLWjsA:4 a=_RhRFcbxBZMA:10 a=jeBq3FmKZ4MA:10 a=gMqfjgEr1zLu/65IO0LwxA==:117 X-Cloudmark-Score: 0 X-Originating-IP: 74.67.89.75 Received: from [74.67.89.75] ([74.67.89.75:56791] helo=gandalf.stny.rr.com) by hrndva-oedge04.mail.rr.com (envelope-from ) (ecelerity 2.2.2.39 r()) with ESMTP id B7/BD-22658-597DFFB4; Fri, 28 May 2010 14:47:50 +0000 Received: from rostedt by gandalf.stny.rr.com with local (Exim 4.71) (envelope-from ) id 1OI0qj-0005xw-6i; Fri, 28 May 2010 10:47:49 -0400 Message-Id: <20100528144749.072671097@goodmis.org> User-Agent: quilt/0.48-1 Date: Fri, 28 May 2010 10:43:24 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Linus Torvalds , Andrew Morton , linux-kbuild@vger.kernel.org, Toralf Foerster Subject: [PATCH 1/3] [PATCH 1/3] kconfig: Make a variable local in streamline_config.pl References: <20100528144323.232583082@goodmis.org> Content-Disposition: inline; filename=0001-kconfig-Make-a-variable-local-in-streamline_config.p.patch Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 28 May 2010 14:48:52 +0000 (UTC) diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl index afbd54a..9726946 100644 --- a/scripts/kconfig/streamline_config.pl +++ b/scripts/kconfig/streamline_config.pl @@ -307,7 +307,7 @@ close (LIN); my %configs; foreach my $module (keys(%modules)) { if (defined($objects{$module})) { - @arr = @{$objects{$module}}; + my @arr = @{$objects{$module}}; foreach my $conf (@arr) { $configs{$conf} = $module; }