summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.common5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 5197d1b..8bf79f0 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -328,7 +328,10 @@ $(patsubst ${PRI_LANG}/%,${1}/%,${2}):: ${2} po/${1}.po \
${DOC_ENTITIES_ENT-${1}}
mkdir -p ${1}
ln -s -f ../${2} $$@.in
- ${XML2PO} -e -p po/${1}.po -l ${1} $$@.in >$$@
+ # ${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 >$$@
clean::
${RM} $$@.in
endef