summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 8bf79f0..4feebee 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -331,11 +331,11 @@ $(patsubst ${PRI_LANG}/%,${1}/%,${2}):: ${2} po/${1}.po \
# ${XML2PO} -e -p po/${1}.po -l ${1} $$@.in >$$@
# This gives the WRONG language "po/${1}" in the
# translation, but I'll have to fix it later. Sorry
- ${XML2PO} -e -p po/${1}.po $$@.in >$$@
+ cd po && ${XML2PO} -e -p ${1}.po ../$$@.in >../$$@ && cd ..
clean::
${RM} $$@.in
endef
-
+
$(foreach L,${OTHERS}, \
$(foreach F,${XMLFILES-${PRI_LANG}}, \
$(eval $(call XML_template,${L},${F}))))