On Fri, 2010-05-28 at 10:24 +0200, Toralf Foerster wrote: > to prevent a possible pitfall > > Signed-off-by: Toralf Foerster <toralf.foerster@xxxxxx> > --- > scripts/kconfig/streamline_config.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > 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}}; Either your mail client, or the method you use to get these into your mail is causing whitespace issues. There are tabs here that your patch has converted into spaces, causing the patch to fail to apply. I've fixed it up, but please fix this before sending more patches. -- Steve > foreach my $conf (@arr) { > $configs{$conf} = $module; > } > -- > 1.6.4.4 > > -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html