aboutsummaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-07-05 22:55:44 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2013-07-23 15:45:24 -0500
commit0cd8eaa011eac66e45ce51cab4a857b175152625 (patch)
tree9ce0fcd7c9577be523cd621de5ef0dae5b101ae1 /po
parent1fa449231832d0fb7f20a3d7ecd06190ce906529 (diff)
po/Makefile: Use macro quiet-command for nice looking messages
Suppress also the "... done" message from msgmerge. 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/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/po/Makefile b/po/Makefile
index a6ab4825fa..705166e2d3 100644
--- a/po/Makefile
+++ b/po/Makefile
@@ -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