Generate man pages with UTF-8 characters

This fixes totally incorrectly rendered manual pages like
perlunicook and perltw.

TODO: should probably be a Configure option for proper upstreaming.

Bug-Debian: https://bugs.debian.org/840211

Gbp-Pq: Topic debian
Gbp-Pq: Name installman-utf8.diff
This commit is contained in:
Niko Tyni 2016-11-19 21:30:46 +02:00 committed by openKylinBot
parent 2a072a7014
commit d5a007d8bb
1 changed files with 1 additions and 0 deletions

View File

@ -161,6 +161,7 @@ sub pod2man {
$manpage = "${mandir}/${manpage}.${manext}";
my $parser = Pod::Man->new( section => $manext,
utf8 => 1,
official=> 1,
center => 'Perl Programmers Reference Guide'
);