From b2fcc49059c2133a2f989a6fc163d3c11c188fd1 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 1 Apr 2008 18:31:15 -0400 Subject: dh_installman: man --recode transparently uncompresses compressed pages. So when saving the output back, save it to a non-compressed filename (and delete the original, compressed file). Closes: #470913 --- dh_installman | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'dh_installman') diff --git a/dh_installman b/dh_installman index dbe25dd2..f0ff2245 100755 --- a/dh_installman +++ b/dh_installman @@ -197,9 +197,12 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if (-e "$tmp/$dir") { find(sub { return if ! -f $_ || -l $_; - complex_doit "man --recode UTF-8 ./\Q$_\E > \Q$_.new\E"; - doit "chmod",644,"$_.new"; - doit "mv","-f","$_.new",$_; + my ($tmp, $orig)=($_.".new", $_); + 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; + doit "mv", "-f", $tmp, $_; }, "$tmp/$dir"); } } -- cgit v1.2.3