diff options
| author | Mauro Carvalho Chehab <[email protected]> | 2018-06-14 13:14:54 +0000 |
|---|---|---|
| committer | Mauro Carvalho Chehab <[email protected]> | 2018-06-15 21:10:01 +0000 |
| commit | e1f319fe4d537da79691f1a1da7a20147de33047 (patch) | |
| tree | dd8f4d1e0906fc64c327a00f19b0fb05008cd653 /scripts/documentation-file-ref-check | |
| parent | scripts/documentation-file-ref-check: add a fix logic for DT (diff) | |
| download | kernel-e1f319fe4d537da79691f1a1da7a20147de33047.tar.gz kernel-e1f319fe4d537da79691f1a1da7a20147de33047.zip | |
scripts/documentation-file-ref-check: hint: dash or underline
Sometimes, people use dash instead of underline or vice-versa.
Try to autocorrect it.
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
Acked-by: Jonathan Corbet <[email protected]>
Diffstat (limited to 'scripts/documentation-file-ref-check')
| -rwxr-xr-x | scripts/documentation-file-ref-check | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/documentation-file-ref-check b/scripts/documentation-file-ref-check index c8bc1c1c1d6e..d132f756d31d 100755 --- a/scripts/documentation-file-ref-check +++ b/scripts/documentation-file-ref-check @@ -104,6 +104,12 @@ foreach my $ref (keys %broken_ref) { $f=qx(find . -iname $new) if ($new); } + # usual reason for breakage: use dash or underline + if (!$f) { + $new =~ s/[-_]/[-_]/g; + $f=qx(find . -iname $new) if ($new); + } + # Wild guess: seek for the same name on another place if (!$f) { $f = qx(find . -iname $new) if ($new); |
