- Work around a DocBook XSL bug which lists unexisting files in the
manifest
This commit is contained in:
parent
0701bf45bd
commit
d55a546a05
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/projects/xml-tools/; revision=41046
1 changed files with 5 additions and 1 deletions
|
@ -698,7 +698,11 @@ install-${_curformat}: ${DOC}.${_curformat}
|
|||
.endif
|
||||
@[ -d ${DESTDIR} ] || ${MKDIR} -p ${DESTDIR}
|
||||
.if ${_cf} == "html-split"
|
||||
${INSTALL_DOCS} $$(${XARGS} < HTML.manifest) ${DESTDIR}
|
||||
.for f in ${_html_docs}
|
||||
.if exists(${f})
|
||||
${INSTALL_DOCS} ${f} ${DESTDIR}
|
||||
.endif
|
||||
.endfor
|
||||
.else
|
||||
${INSTALL_DOCS} ${.ALLSRC} ${DESTDIR}
|
||||
.endif
|
||||
|
|
Loading…
Reference in a new issue