提交 0cd8eaa0 编写于 作者: S Stefan Weil 提交者: Anthony Liguori

po/Makefile: Use macro quiet-command for nice looking messages

Suppress also the "... done" message from msgmerge.
Signed-off-by: NStefan Weil <sw@weilnetz.de>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 1fa44923
......@@ -5,6 +5,7 @@
SRC_PATH=..
-include ../config-host.mak
include $(SRC_PATH)/rules.mak
PO_PATH=$(SRC_PATH)/po
......@@ -33,16 +34,16 @@ install: $(OBJS)
done
%.mo: %.po
@msgfmt -o $@ $<
$(call quiet-command, msgfmt -o $@ $<, " GEN $@")
$(PO_PATH)/messages.po: $(SRC_PATH)/ui/gtk.c
@cd $(SRC_PATH) && \
$(call quiet-command, 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/) >$@
sed -e s/CHARSET/UTF-8/) >$@, " GEN $@")
$(PO_PATH)/%.po: $(PO_PATH)/messages.po
@msgmerge $@ $< > $@.bak && mv $@.bak $@
$(call quiet-command, msgmerge -q $@ $< > $@.bak && mv $@.bak $@, " GEN $@")
.PHONY: clean all
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册