Package: lintian Version: 2.5.38 This code was meant to catch bugs like #713883:
if ($file =~ m/_build_buildd/ or $file =~ /_tmp_buildd/) {
tag 'manpage-named-after-build-path', $file;
}
But sbuild builds stuff in /build/$PACKAGE-$RANDOMSTRING, so this regexp
wouldn't match anything, unless the source package name starts with
"buildd".
(sbuild in buildd mode used to use /build/buildd-$PACKAGE-$RANDOMSTRING, but AFAICS it now uses "buildd-"less paths.)
-- Jakub Wilk

