From 9964dac781d63545840cdd7a48deacfc420267a1 Mon Sep 17 00:00:00 2001 From: Paul Bolle Date: Tue, 6 Nov 2018 13:49:38 +0100 Subject: 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 --- scripts/check-configs.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/check-configs.pl b/scripts/check-configs.pl index 10282aa74..39df8f4ad 100644 --- a/scripts/check-configs.pl +++ b/scripts/check-configs.pl @@ -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]'" ) -- cgit