Adjust glob pattern for configuration files

With the introduction of the new method of configuration generation the
names of the shipped kernel configuration files changed too. Adjust the
glob pattern in the check-configs.pl script to those changed names.

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
This commit is contained in:
Paul Bolle 2018-11-06 13:49:38 +01:00 committed by Justin M. Forbes
parent 73cf59ae2c
commit 9964dac781
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ sub main {
}
}
foreach my $shipped (glob("config-*")) {
foreach my $shipped (glob("*.config")) {
my (@tmp) = parse_shipped( $shipped );
foreach my $ref ( @tmp ) {
say( STDERR "$shipped:$ref->[0]: No Kconfig symbol matches 'CONFIG_$ref->[1]'" )