munge NAME section of man pages to make lintian happy

This commit is contained in:
Joey Hess 2015-05-22 16:06:21 -04:00
parent cab2f05b50
commit 38c8b757d8

View file

@ -43,5 +43,16 @@ while (<>) {
$_=".IP\n";
}
if ($inNAME) {
# make lexgrog happy
s/^git-annex /git-annex-/;
}
if ($_ eq ".SH NAME\n") {
$inNAME=1;
}
else {
$inNAME=0;
}
print $_;
}