summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2018-11-06 13:49:38 +0100
committerJustin M. Forbes <jforbes@fedoraproject.org>2018-11-06 09:43:31 -0600
commit9964dac781d63545840cdd7a48deacfc420267a1 (patch)
tree73b3c3cacd2613f56e91c82560c7a9800ca00076 /scripts
parent73cf59ae2cbf6d1c53d01451ea354164b504853e (diff)
downloadkernel-9964dac781d63545840cdd7a48deacfc420267a1.tar.gz
kernel-9964dac781d63545840cdd7a48deacfc420267a1.tar.xz
kernel-9964dac781d63545840cdd7a48deacfc420267a1.zip
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>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check-configs.pl2
1 files changed, 1 insertions, 1 deletions
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]'" )