munge NAME section of man pages to make lintian happy
This commit is contained in:
parent
cab2f05b50
commit
38c8b757d8
1 changed files with 11 additions and 0 deletions
|
@ -43,5 +43,16 @@ while (<>) {
|
||||||
$_=".IP\n";
|
$_=".IP\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($inNAME) {
|
||||||
|
# make lexgrog happy
|
||||||
|
s/^git-annex /git-annex-/;
|
||||||
|
}
|
||||||
|
if ($_ eq ".SH NAME\n") {
|
||||||
|
$inNAME=1;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$inNAME=0;
|
||||||
|
}
|
||||||
|
|
||||||
print $_;
|
print $_;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue