diff options
author | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-05-29 20:09:29 -0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2019-05-30 10:40:24 -0600 |
commit | 4904aeed9f686c90dba72980f0067ac1a7dbbfb6 (patch) | |
tree | b41ae02a422dd507c53bacc3da46eb56db84e22d | |
parent | aeaacbfed853c17b8ac5e73c21f54d7f0805d899 (diff) | |
download | linux-4904aeed9f686c90dba72980f0067ac1a7dbbfb6.tar.gz linux-4904aeed9f686c90dba72980f0067ac1a7dbbfb6.tar.bz2 linux-4904aeed9f686c90dba72980f0067ac1a7dbbfb6.zip |
scripts/documentation-file-ref-check: improve tools ref handling
There's a false positive on perf/util:
tools/perf/util/s390-cpumsf.c: Documentation/perf.data-file-format.txt
The file is there at tools/perf/Documentation/, but the logic
with detects relative documentation references inside tools is
not capable of detecting it.
So, improve it.
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
-rwxr-xr-x | scripts/documentation-file-ref-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/documentation-file-ref-check b/scripts/documentation-file-ref-check index 05235775cc71..5d775ca7469b 100755 --- a/scripts/documentation-file-ref-check +++ b/scripts/documentation-file-ref-check @@ -127,7 +127,7 @@ while (<IN>) { if ($f =~ m/tools/) { my $path = $f; $path =~ s,(.*)/.*,$1,; - next if (grep -e, glob("$path/$ref $path/$fulref")); + next if (grep -e, glob("$path/$ref $path/../$ref $path/$fulref")); } # Discard known false-positives |