diff options
author | Stefan Weil <sw@weilnetz.de> | 2013-07-05 22:55:43 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-07-23 15:45:23 -0500 |
commit | 1fa449231832d0fb7f20a3d7ecd06190ce906529 (patch) | |
tree | 4952c3f5092e172871a8815cdd9ed595e5124fc6 /po | |
parent | 00134a62039a12822cda91310131cc050f78cf9b (diff) | |
download | qemu-1fa449231832d0fb7f20a3d7ecd06190ce906529.zip qemu-1fa449231832d0fb7f20a3d7ecd06190ce906529.tar.gz qemu-1fa449231832d0fb7f20a3d7ecd06190ce906529.tar.bz2 |
po/Makefile: Fix generation of messages.po
* Tell xgettext that we use UTF-8 encoding (this is currently optional).
* Set charset=UTF-8 in messages.po. This avoids warnings from msgmerge:
warning: Charset "CHARSET" is not a portable encoding name.
* Use filename relative to root directory (ui/gtk.c instead of ../ui/gtk.c
or $(SRC_PATH)/ui/gtk.c) for comments in *.po files.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/po/Makefile b/po/Makefile index 0e345b0..a6ab482 100644 --- a/po/Makefile +++ b/po/Makefile @@ -36,7 +36,11 @@ install: $(OBJS) @msgfmt -o $@ $< $(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c - @xgettext -o $@ --foreign-user --package-name=QEMU --package-version=$(VERSION) --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C $< + @cd $(SRC_PATH) && \ + (xgettext -o - --from-code=UTF-8 --foreign-user \ + --package-name=QEMU --package-version=$(VERSION) \ + --msgid-bugs-address=qemu-devel@nongnu.org -k_ -C ui/gtk.c | \ + sed -e s/CHARSET/UTF-8/) >$@ $(PO_PATH)/%.po: $(PO_PATH)/messages.po @msgmerge $@ $< > $@.bak && mv $@.bak $@ |