From patchwork Fri May 28 08:24:59 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Toralf_F=C3=B6rster?= X-Patchwork-Id: 102837 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 o4S8PaII020392 for ; Fri, 28 May 2010 08:25:36 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757157Ab0E1IZI (ORCPT ); Fri, 28 May 2010 04:25:08 -0400 Received: from mail.gmx.net ([213.165.64.20]:38773 "HELO mail.gmx.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1756959Ab0E1IZC (ORCPT ); Fri, 28 May 2010 04:25:02 -0400 Received: (qmail invoked by alias); 28 May 2010 08:25:01 -0000 Received: from deibp9eh1--blueice3n1.emea.ibm.com (EHLO n22.localnet) [195.212.29.179] by mail.gmx.net (mp069) with SMTP; 28 May 2010 10:25:01 +0200 X-Authenticated: #5108953 X-Provags-ID: V01U2FsdGVkX1//3wQhIHH/97tZfHQIMzLVOFNAqulWqGk6l6r1nB dSrKk5iz+Nydlm From: Toralf Foerster To: Steven Rostedt Subject: [PATCH] streamline_config.pl: make a variable local Date: Fri, 28 May 2010 10:24:59 +0200 User-Agent: KMail/1.13.3 (Linux/2.6.34; KDE/4.4.3; i686; ; ) Cc: zippel@linux-m68k.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org MIME-Version: 1.0 Message-Id: <201005281025.00358.toralf.foerster@gmx.de> X-Y-GMX-Trusted: 0 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 08:25:37 +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; }