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 078999a3fdff..857eb0d7458d 100755 --- a/scripts/documentation-file-ref-check +++ b/scripts/documentation-file-ref-check | |||
@@ -75,6 +75,9 @@ while (<IN>) { | |||
75 | # Remove URL false-positives | 75 | # Remove URL false-positives |
76 | next if ($fulref =~ m/^http/); | 76 | next if ($fulref =~ m/^http/); |
77 | 77 | ||
78 | # Discard some build examples from Documentation/target/tcm_mod_builder.txt | ||
79 | next if ($fulref =~ m,mnt/sdb/lio-core-2.6.git/Documentation/target,); | ||
80 | |||
78 | # Check if exists, evaluating wildcards | 81 | # Check if exists, evaluating wildcards |
79 | next if (grep -e, glob("$ref $fulref")); | 82 | next if (grep -e, glob("$ref $fulref")); |
80 | 83 | ||