diff options
Diffstat (limited to 'scripts/documentation-file-ref-check')
-rwxr-xr-x | scripts/documentation-file-ref-check | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/documentation-file-ref-check b/scripts/documentation-file-ref-check index ad9db6821824..bd7d9ab63941 100755 --- a/scripts/documentation-file-ref-check +++ b/scripts/documentation-file-ref-check | |||
@@ -38,6 +38,9 @@ while (<IN>) { | |||
38 | my $f = $1; | 38 | my $f = $1; |
39 | my $ln = $2; | 39 | my $ln = $2; |
40 | 40 | ||
41 | # On linux-next, discard the Next/ directory | ||
42 | next if ($f =~ m,^Next/,); | ||
43 | |||
41 | # Makefiles and scripts contain nasty expressions to parse docs | 44 | # Makefiles and scripts contain nasty expressions to parse docs |
42 | next if ($f =~ m/Makefile/ || $f =~ m/\.sh$/); | 45 | next if ($f =~ m/Makefile/ || $f =~ m/\.sh$/); |
43 | 46 | ||