svn commit: r39921 - head/share/mk
Hiroki Sato
hrs at FreeBSD.org
Sat Nov 3 21:16:09 UTC 2012
Author: hrs
Date: Sat Nov 3 21:16:08 2012
New Revision: 39921
URL: http://svn.freebsd.org/changeset/doc/39921
Log:
Fix a typo in the dependency detection. It ignored all of *.ent files
accidentally.
Modified:
head/share/mk/doc.xml.mk
Modified: head/share/mk/doc.xml.mk
==============================================================================
--- head/share/mk/doc.xml.mk Sat Nov 3 20:39:35 2012 (r39920)
+++ head/share/mk/doc.xml.mk Sat Nov 3 21:16:08 2012 (r39921)
@@ -27,13 +27,14 @@ _XML_INCLIST= libcommon.l10n.xsl \
header.l10n.ent \
iso8879.ent \
l10n.ent \
- release.ent
-.for F in ${_INCLIST}
+ release.ent \
+ release.l10n.ent
+.for F in ${_XML_INCLIST}
.if exists(${DOC_PREFIX}/${LANGCODE}/share/xml/${F})
-XML_INCLUDES+= ${F}
+XML_INCLUDES+= ${DOC_PREFIX}/${LANGCODE}/share/xml/${F}
.endif
.if exists(${DOC_PREFIX}/share/xml/${F})
-XML_INCLUDES+= ${F}
+XML_INCLUDES+= ${DOC_PREFIX}/share/xml/${F}
.endif
.endfor
More information about the svn-doc-all
mailing list