提交 00134a62 编写于 作者: S Stefan Weil 提交者: Anthony Liguori

po/Makefile: Fix *.mo generation for out-of-tree builds (regression)

Commit f8475655 added a wildcard search
for *.po files. This search found no files for out of tree builds, so
those builds no longer created and installed *.mo files.
Signed-off-by: NStefan Weil <sw@weilnetz.de>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 18e12d49
# This makefile is very special as it's meant to build as part of the build
# process and also within the source tree to update the translation files.
VERSION=$(shell cat ../VERSION)
SRCS=$(filter-out messages.po,$(wildcard *.po))
OBJS=$(patsubst %.po,%.mo,$(SRCS))
# Set SRC_PATH for in-tree builds without configuration.
SRC_PATH=..
-include ../config-host.mak
vpath %.po $(SRC_PATH)/po
PO_PATH=$(SRC_PATH)/po
VERSION=$(shell cat $(SRC_PATH)/VERSION)
SRCS=$(filter-out $(PO_PATH)/messages.po,$(wildcard $(PO_PATH)/*.po))
OBJS=$(patsubst $(PO_PATH)/%.po,%.mo,$(SRCS))
vpath %.po $(PO_PATH)
all:
@echo "Use 'make update' to update translation files or use 'make build'"
......@@ -30,12 +33,12 @@ install: $(OBJS)
done
%.mo: %.po
@msgfmt -o $@ $(SRC_PATH)/po/`basename $@ .mo`.po
@msgfmt -o $@ $<
messages.po: $(SRC_PATH)/ui/gtk.c
$(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 $<
%.po: messages.po
$(PO_PATH)/%.po: $(PO_PATH)/messages.po
@msgmerge $@ $< > $@.bak && mv $@.bak $@
.PHONY: clean all
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册