diff options
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 78faf13e..bbea82e8 100755 --- a/dh_installman +++ b/dh_installman @@ -210,7 +210,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { complex_doit "man --recode UTF-8 ./\Q$orig\E > \Q$tmp\E"; # recode uncompresses compressed pages doit "rm", "-f", $orig if s/\.(gz|Z)$//; - doit "chmod", 644, $tmp; + reset_perm_and_owner('0755' $tmp); doit "mv", "-f", $tmp, $_; }, "$tmp/$dir"); } |