summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2007-04-05 11:32:37 +0000
committerPaul W. Frields <stickster@gmail.com>2007-04-05 11:32:37 +0000
commit3d09ab0bd3f02a4aa6ae4aebcb4ce8d8ee8a4447 (patch)
tree42c018c913cf1b5e96524b62f1b19dcc97e7b2ab
parent0aa9e0b90804961bd90105d09812b911ad64b93a (diff)
downloadfedora-doc-utils-3d09ab0bd3f02a4aa6ae4aebcb4ce8d8ee8a4447.tar.gz
fedora-doc-utils-3d09ab0bd3f02a4aa6ae4aebcb4ce8d8ee8a4447.tar.xz
fedora-doc-utils-3d09ab0bd3f02a4aa6ae4aebcb4ce8d8ee8a4447.zip
Move this errant declaration so that ${LANG}/rpm-info.xml is
properly considered as part of the XMLFILES for a lang. This will ensure POT is properly generated when only the rpm-info.xml file is changed.
-rw-r--r--Makefile.common4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 24fba77..5e00731 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -205,6 +205,8 @@ endif
# Explode the template from the doc-specific Makefile to get the
# XML files the author knows about.
$(foreach L,${LANGUAGES},$(eval $(call XMLFILES_template,${L})))
+# Make sure rpm-info is part of the document PO template
+$(foreach L,${LANGUAGES},$(eval XMLFILES-${L}+=${L}/${RPMINFO}))
# Append per-document dependencies
$(foreach L, ${LANGUAGES}, $(eval XMLDEPFILES-${L}+=${DOC_ENTITIES_ENT-${L}}))
$(foreach L, ${LANGUAGES}, $(eval XMLDEPFILES-${L}+=${L}/fdp-info.xml))
@@ -824,8 +826,6 @@ endef
# ${PRI_LANG}/${RPMINFO} must exist, only generate for OTHERS
$(foreach L,${OTHERS},$(eval $(call rpm-info_template,${L})))
-# Make sure rpm-info is part of the document PO template
-$(foreach L,${LANGUAGES},$(eval XMLFILES-${L}+=${L}/${RPMINFO}))
#
#########################################################################