From 6f9babcb28ce9b8ecfc1afb612361d26c9ec34a7 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Mon, 6 May 2019 16:48:38 +0000 Subject: Initial v5.1 rebase --- scripts/check-configs.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/check-configs.pl') diff --git a/scripts/check-configs.pl b/scripts/check-configs.pl index 10282aa74..c74acf1d4 100644 --- a/scripts/check-configs.pl +++ b/scripts/check-configs.pl @@ -70,11 +70,11 @@ 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]'" ) - unless (grep( /$ref->[1]/, keys( %configs ))); + unless (grep( /^$ref->[1]$/, keys( %configs ))); } } -- cgit