summaryrefslogtreecommitdiff
path: root/dh_installman
diff options
context:
space:
mode:
authorjoey <joey>2002-04-14 16:03:16 +0000
committerjoey <joey>2002-04-14 16:03:16 +0000
commitfae5806aeb1a5e7b40a9c149a739f645395e5139 (patch)
treef777f35ba87a92ee88a0ccaf81f273a7185f1722 /dh_installman
parent29fd2dcb7d861e78f8b5855abd06364e8d60c2ed (diff)
r519: * dh_installdebconf: allow parameters after -- to go to
debconf-mergetemplate. * dh_installman: don't whine about zero-length man pages in .so conversion. * Forgot to export filedoublearray, Closes: #142784
Diffstat (limited to 'dh_installman')
-rwxr-xr-xdh_installman2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_installman b/dh_installman
index 30fde7e2..cc94843e 100755
--- a/dh_installman
+++ b/dh_installman
@@ -170,7 +170,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
sub find_so_man {
# The -s test is becuase a .so file tends to be small. We don't want
# to open every man page. 1024 is arbitrary.
- if (! -f $_ || -s $_ > 1024) {
+ if (! -f $_ || -s $_ > 1024 || -s == 0) {
return;
}