Fix a typo in the dependency detection. It ignored all of *.ent files

accidentally.
This commit is contained in:
Hiroki Sato 2012-11-03 21:16:08 +00:00
parent 2d423304a8
commit 4654052202
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=39921

View file

@ -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