diff options
author | joey <joey> | 2002-04-14 16:03:16 +0000 |
---|---|---|
committer | joey <joey> | 2002-04-14 16:03:16 +0000 |
commit | fae5806aeb1a5e7b40a9c149a739f645395e5139 (patch) | |
tree | f777f35ba87a92ee88a0ccaf81f273a7185f1722 /dh_installman | |
parent | 29fd2dcb7d861e78f8b5855abd06364e8d60c2ed (diff) | |
download | debhelper-fae5806aeb1a5e7b40a9c149a739f645395e5139.tar.gz |
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-x | dh_installman | 2 |
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; } |