mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
scripts/documentation-file-ref-check: don't parse Next/ dir
If one tries to run this script under linux-next, it would hit lots of false-positives, due to the tree merges that are stored under the Next/ directory. So, add a logic to ignore it. Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
62be257e98
commit
fe3e4b9c63
@ -38,6 +38,9 @@ while (<IN>) {
|
||||
my $f = $1;
|
||||
my $ln = $2;
|
||||
|
||||
# On linux-next, discard the Next/ directory
|
||||
next if ($f =~ m,^Next/,);
|
||||
|
||||
# Makefiles and scripts contain nasty expressions to parse docs
|
||||
next if ($f =~ m/Makefile/ || $f =~ m/\.sh$/);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user