summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorThorsten Leemhuis <fedora@leemhuis.info>2018-11-10 18:10:12 +0100
committerThorsten Leemhuis <fedora@leemhuis.info>2018-11-10 18:10:12 +0100
commitc3951faeec66e05b1f99545a64be9c9fc0e1e8c6 (patch)
tree0a413b71d69f82b804637eac411048b69f67e267 /scripts
parent50d38e9a45d64e3a0708335e925f20dbcaedbb80 (diff)
parent7b5b8ca4e4f829fc0d53f4413056238a61ab548d (diff)
downloadkernel-c3951faeec66e05b1f99545a64be9c9fc0e1e8c6.tar.gz
kernel-c3951faeec66e05b1f99545a64be9c9fc0e1e8c6.tar.xz
kernel-c3951faeec66e05b1f99545a64be9c9fc0e1e8c6.zip
Merge remote-tracking branch 'origin/master' into rawhide-user-thl-vanilla-fedorakernel-4.20.0-0.rc1.git4.1.vanilla.knurd.1.fc28
Diffstat (limited to 'scripts')
-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 )));
}
}