From: Richard W.M. Jones Date: Mon, 18 Jul 2011 08:33:24 +0000 (+0100) Subject: po-docs: Fix UTF-8 encoding problem. X-Git-Tag: 1.11.19~3 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=33fe14b42f4977740ef12c4d6fc08873b8eef676 po-docs: Fix UTF-8 encoding problem. --- diff --git a/po-docs/Makefile.am b/po-docs/Makefile.am index ede07e7..eede6e0 100644 --- a/po-docs/Makefile.am +++ b/po-docs/Makefile.am @@ -50,7 +50,8 @@ libguestfs-docs.pot: po4a.conf --copyright-holder "Red Hat Inc." \ po4a.conf for f in `find $(LINGUAS) -name '*.pod' -o -name '*.pl'`; do \ - awk 'FNR >= 14 { print }' < $$f > $$f.new; \ + echo '=encoding utf8' > $$f.new; \ + awk 'FNR >= 14 { print }' < $$f >> $$f.new; \ mv $$f.new $$f; \ done