aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToralf Foerster <[email protected]>2010-05-28 10:24:59 +0200
committerSteven Rostedt <[email protected]>2010-05-28 10:31:25 -0400
commite5199edb9e1b17792743d76bf10601ec7d6ef513 (patch)
treee379c1c0dc808c280a8d38a689d7a1f3b559437e
parentcc106eb35ed4abea675bce0d8fe40a46ff0b4a72 (diff)
kconfig: Make a variable local in streamline_config.pl
Proper perl requires that local variables should be declared with 'my', otherwise this may produce errors. Signed-off-by: Toralf Foerster <[email protected]> LKML-Reference: <[email protected]> Signed-off-by: Steven Rostedt <[email protected]>
-rw-r--r--scripts/kconfig/streamline_config.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index afbd54ac1d83..9726946472fd 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;
}