From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:55364) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S6fWq-0005TG-BW for qemu-devel@nongnu.org; Sun, 11 Mar 2012 05:57:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S6fWo-0007hV-Fa for qemu-devel@nongnu.org; Sun, 11 Mar 2012 05:57:27 -0400 Received: from isrv.corpit.ru ([86.62.121.231]:44014) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S6fWo-0007hQ-7k for qemu-devel@nongnu.org; Sun, 11 Mar 2012 05:57:26 -0400 Message-ID: <4F5C7704.4090907@msgid.tls.msk.ru> Date: Sun, 11 Mar 2012 13:57:24 +0400 From: Michael Tokarev MIME-Version: 1.0 References: <1328192202-23450-1-git-send-email-mjt@msgid.tls.msk.ru> <1328192202-23450-2-git-send-email-mjt@msgid.tls.msk.ru> In-Reply-To: <1328192202-23450-2-git-send-email-mjt@msgid.tls.msk.ru> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/2] Run pod2man with --utf8 option to enable utf8 in manpages List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Hajnoczi , Peter Maydell 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 > --- > 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