Commit 17431928194b36a0f88082df875e2e036da7fddf

Authored by Toralf Förster
Committed by Steven Rostedt
1 parent 1d1d1feafd

kconfig: Hide error output in find command in streamline_config.pl

Finding the list of Makefiles in streamline-config should not report errors.

Also move the "chomp" to the @makefiles array instead of doing it in the
for loop. This is more efficient, and does not make it any less readable
by C programmers.

Signed-off-by: Toralf Foerster <toralf.foerster@gmx.de>
LKML-Reference: <201005262022.02928.toralf.foerster@gmx.de>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>

Showing 1 changed file with 3 additions and 2 deletions Side-by-side Diff

scripts/kconfig/streamline_config.pl
... ... @@ -115,7 +115,9 @@
115 115 my $kconfig = $ARGV[1];
116 116 my $lsmod_file = $ARGV[2];
117 117  
118   -my @makefiles = `find $ksource -name Makefile`;
  118 +my @makefiles = `find $ksource -name Makefile 2>/dev/null`;
  119 +chomp @makefiles;
  120 +
119 121 my %depends;
120 122 my %selects;
121 123 my %prompts;
... ... @@ -215,7 +217,6 @@
215 217  
216 218 # Read all Makefiles to map the configs to the objects
217 219 foreach my $makefile (@makefiles) {
218   - chomp $makefile;
219 220  
220 221 open(MIN,$makefile) || die "Can't open $makefile";
221 222 while (<MIN>) {