qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/2] Run pod2man with --utf8 option to enable ut


From: Michael Tokarev
Subject: Re: [Qemu-devel] [PATCH 2/2] Run pod2man with --utf8 option to enable utf8 in manpages
Date: Sun, 11 Mar 2012 13:57:24 +0400
User-agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:8.0) Gecko/20120216 Icedove/8.0

Ping?  It's been more than a month since this patch has been posted.

Maybe it is a good candidate for -trivial queue?

Thanks,

/mjt

On 02.02.2012 18:16, Michael Tokarev wrote:
> This option makes no difference for manpages which contains only
> ascii chars.  But for manpages with actual UTF8 characters (qemu
> docs contains these), this change allows to see real characters
> instead of mojibakes or substitutes.
> 
> Signed-off-By: Michael Tokarev <address@hidden>
> ---
>  Makefile |    9 +++++----
>  1 files changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/Makefile b/Makefile
> index 2560b59..737cda2 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -337,28 +337,29 @@ QMP/qmp-commands.txt: $(SRC_PATH)/qmp-commands.hx
>  qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
>       $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"  GEN  
>  $@")
>  
> +POD2MAN = pod2man --utf8
>  qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
>       $(call quiet-command, \
>         perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
> -       pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
> +       $(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
>         "  GEN   $@")
>  
>  qemu-img.1: qemu-img.texi qemu-img-cmds.texi
>       $(call quiet-command, \
>         perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
> -       pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
> +       $(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
>         "  GEN   $@")
>  
>  fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
>       $(call quiet-command, \
>         perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< 
> fsdev/virtfs-proxy-helper.pod && \
> -       pod2man --section=1 --center=" " --release=" " 
> fsdev/virtfs-proxy-helper.pod > $@, \
> +       $(POD2MAN) --section=1 --center=" " --release=" " 
> fsdev/virtfs-proxy-helper.pod > $@, \
>         "  GEN   $@")
>  
>  qemu-nbd.8: qemu-nbd.texi
>       $(call quiet-command, \
>         perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
> -       pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
> +       $(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
>         "  GEN   $@")
>  
>  dvi: qemu-doc.dvi qemu-tech.dvi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]