- Work around a DocBook XSL bug which lists unexisting files in the

manifest
This commit is contained in:
Gabor Kovesdan 2013-02-25 20:19:29 +00:00
parent 0701bf45bd
commit d55a546a05
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/projects/xml-tools/; revision=41046

View file

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