summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-03-06 12:30:27 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2006-03-06 12:30:27 +0000
commit899c0a3f4c8fd7d6a108e08a5b8857e06e7c8693 (patch)
treec461337acab1795eecc4df15b155efdd9fab3bd6
parentca1be4833ca9784a0e4bc84cc5add1271d6f4ccd (diff)
downloadfedora-doc-utils-899c0a3f4c8fd7d6a108e08a5b8857e06e7c8693.tar.gz
fedora-doc-utils-899c0a3f4c8fd7d6a108e08a5b8857e06e7c8693.tar.xz
fedora-doc-utils-899c0a3f4c8fd7d6a108e08a5b8857e06e7c8693.zip
My bad. FC4 xml2po does NOT have the "-l ${LANG}" switch, so I've
taken it out. Tranlations will have the bogus 'lang="po/${LANG}"' attribute on their top-level element. I'll complete the fix later this evening. Sorry.
-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