|
@@ -78,6 +78,13 @@ while (<IN>) {
|
|
|
# Check if exists, evaluating wildcards
|
|
|
next if (grep -e, glob("$ref $fulref"));
|
|
|
|
|
|
+ # Accept relative Documentation patches for tools/
|
|
|
+ if ($f =~ m/tools/) {
|
|
|
+ my $path = $f;
|
|
|
+ $path =~ s,(.*)/.*,$1,;
|
|
|
+ next if (grep -e, glob("$path/$ref $path/$fulref"));
|
|
|
+ }
|
|
|
+
|
|
|
if ($fix) {
|
|
|
if (!($ref =~ m/(scripts|Kconfig|Kbuild)/)) {
|
|
|
$broken_ref{$ref}++;
|