Fix a typo in the dependency detection. It ignored all of *.ent files
accidentally.
This commit is contained in:
parent
2d423304a8
commit
4654052202
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=39921
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue