1) Use non-relative path to the DSL location, which makes external
document building work again. 2) Add support for building html documents, which is required for ipsec-must document.
This commit is contained in:
parent
b3287c531b
commit
2d8415a9de
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=7604
2 changed files with 7 additions and 4 deletions
share/mk
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.10 2000/03/24 19:31:34 nbm Exp $
|
# $FreeBSD: doc/share/mk/doc.docbook.mk,v 1.11 2000/04/29 07:46:15 kuriyama Exp $
|
||||||
#
|
#
|
||||||
# This include file <doc.docbook.mk> handles building and installing of
|
# This include file <doc.docbook.mk> handles building and installing of
|
||||||
# DocBook documentation in the FreeBSD Documentation Project.
|
# DocBook documentation in the FreeBSD Documentation Project.
|
||||||
|
@ -49,8 +49,8 @@ MASTERDOC?= ${.CURDIR}/${DOC}.sgml
|
||||||
|
|
||||||
JADE= ${PREFIX}/bin/jade
|
JADE= ${PREFIX}/bin/jade
|
||||||
|
|
||||||
DSLHTML?= ${.CURDIR}/../../share/sgml/freebsd.dsl
|
DSLHTML?= ${DOC_PREFIX}/${LANG_CODE}/share/sgml/freebsd.dsl
|
||||||
DSLPRINT?= ${.CURDIR}/../../share/sgml/freebsd.dsl
|
DSLPRINT?= ${DOC_PREFIX}/${LANG_CODE}/share/sgml/freebsd.dsl
|
||||||
FREEBSDCATALOG= ${DOC_PREFIX}/share/sgml/catalog
|
FREEBSDCATALOG= ${DOC_PREFIX}/share/sgml/catalog
|
||||||
|
|
||||||
DOCBOOKCATALOG= ${PREFIX}/share/sgml/docbook/catalog
|
DOCBOOKCATALOG= ${PREFIX}/share/sgml/docbook/catalog
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# $FreeBSD$
|
# $FreeBSD: doc/share/mk/doc.project.mk,v 1.2 1999/09/06 06:53:39 peter Exp $
|
||||||
#
|
#
|
||||||
# This include file <doc.project.mk> is the FreeBSD Documentation Project
|
# This include file <doc.project.mk> is the FreeBSD Documentation Project
|
||||||
# co-ordination make file.
|
# co-ordination make file.
|
||||||
|
@ -67,6 +67,9 @@ PRI_LANG?= en_US.ISO_8859-1
|
||||||
.if ${DOCFORMAT} == "docbook"
|
.if ${DOCFORMAT} == "docbook"
|
||||||
.include "doc.docbook.mk"
|
.include "doc.docbook.mk"
|
||||||
.endif
|
.endif
|
||||||
|
.if ${DOCFORMAT} == "html"
|
||||||
|
.include "doc.html.mk"
|
||||||
|
.endif
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
# Subdirectory glue and ownership information.
|
# Subdirectory glue and ownership information.
|
||||||
|
|
Loading…
Reference in a new issue