Quick fix to produce correct html.tar and html.split.tar tarballs
PR: docs/52419
This commit is contained in:
parent
db7f7d2adc
commit
efd8e60b6d
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=17474
1 changed files with 8 additions and 2 deletions
|
@ -467,12 +467,18 @@ ${DOC}.html-text: ${DOC}.xml ${INDEX_SGML} ${HTML_INDEX}
|
|||
${DOC}.html-split.tar: HTML.manifest ${LOCAL_IMAGES_LIB} \
|
||||
${LOCAL_IMAGES_PNG} ${LOCAL_CSS_SHEET}
|
||||
${TAR} cf ${.TARGET} $$(${XARGS} < HTML.manifest) \
|
||||
${LOCAL_IMAGES_LIB} ${IMAGES_PNG} ${CSS_SHEET:T}
|
||||
${LOCAL_IMAGES_LIB} ${IMAGES_PNG:N*share*} ${CSS_SHEET:T}
|
||||
.for _curimage in ${IMAGES_PNG:M*share*}
|
||||
${TAR} rf ${.TARGET} -C ${IMAGES_EN_DIR}/${DOC}s/${.CURDIR:T} ${_curimage:S|${IMAGES_EN_DIR}/${DOC}s/${.CURDIR:T}/||}
|
||||
.endfor
|
||||
|
||||
${DOC}.html.tar: ${DOC}.html ${LOCAL_IMAGES_LIB} \
|
||||
${LOCAL_IMAGES_PNG} ${LOCAL_CSS_SHEET}
|
||||
${TAR} cf ${.TARGET} ${DOC}.html \
|
||||
${LOCAL_IMAGES_LIB} ${IMAGES_PNG} ${CSS_SHEET:T}
|
||||
${LOCAL_IMAGES_LIB} ${IMAGES_PNG:N*share*} ${CSS_SHEET:T}
|
||||
.for _curimage in ${IMAGES_PNG:M*share*}
|
||||
${TAR} rf ${.TARGET} -C ${IMAGES_EN_DIR}/${DOC}s/${.CURDIR:T} ${_curimage:S|${IMAGES_EN_DIR}/${DOC}s/${.CURDIR:T}/||}
|
||||
.endfor
|
||||
|
||||
# TXT --------------------------------------------------------------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue