Tell collateindex to set the id tag (to "doc-index" in lack of better

idea for a name) so we will not get dynamic filenames for html-split
output.
This commit is contained in:
Simon L. B. Nielsen 2005-01-06 12:40:46 +00:00
parent c64ca1e1c6
commit 7cfdcf77eb
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=23459

View file

@ -653,17 +653,17 @@ lint validate:
#
${INDEX_SGML}:
${PERL} ${COLLATEINDEX} -N -o ${.TARGET}
${PERL} ${COLLATEINDEX} -i doc-index -N -o ${.TARGET}
${HTML_INDEX}:
${JADE_CMD} -V html-index -V nochunks ${HTMLOPTS} -ioutput.html.images \
${JADEOPTS} -t sgml ${MASTERDOC} > /dev/null
${PERL} ${COLLATEINDEX} -g -o ${INDEX_SGML} ${.TARGET}
${PERL} ${COLLATEINDEX} -i doc-index -g -o ${INDEX_SGML} ${.TARGET}
${HTML_SPLIT_INDEX}:
${JADE_CMD} -V html-index ${HTMLOPTS} -ioutput.html.images \
${JADEOPTS} -t sgml ${MASTERDOC} > /dev/null
${PERL} ${COLLATEINDEX} -g -o ${INDEX_SGML} ${.TARGET}
${PERL} ${COLLATEINDEX} -i doc-index -g -o ${INDEX_SGML} ${.TARGET}
${PRINT_INDEX}: ${HTML_INDEX}
${CP} -p ${HTML_INDEX} ${.TARGET}