summaryrefslogtreecommitdiffstats
path: root/scripts/check-configs.pl
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2019-05-11 08:17:27 +0200
committerThorsten Leemhuis <fedora@leemhuis.info>2019-05-11 08:17:27 +0200
commitf4378e08e859b69c65ddecca8c860db9d9f67131 (patch)
tree8d9685208820449179e55a6c0b4f8772e02f74f9 /scripts/check-configs.pl
parent45b5f6d3056805626154f40d9dfc6d43bf43e936 (diff)
parent46d554b218abd67b9670498cf54cac499c9f826d (diff)
downloadkernel-f4378e08e859b69c65ddecca8c860db9d9f67131.tar.gz
kernel-f4378e08e859b69c65ddecca8c860db9d9f67131.tar.xz
kernel-f4378e08e859b69c65ddecca8c860db9d9f67131.zip
merge origin
Diffstat (limited to 'scripts/check-configs.pl')
-rw-r--r--scripts/check-configs.pl4
1 files changed, 2 insertions, 2 deletions
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 )));
}
}