From 1b44529726a0806ec24b607f8162581ad3268743 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 16 Apr 2024 19:44:56 +0300 Subject: [PATCH 1/2] Update doc/Jamfile --- doc/Jamfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/doc/Jamfile b/doc/Jamfile index 5943a2a..106dc59 100644 --- a/doc/Jamfile +++ b/doc/Jamfile @@ -4,14 +4,10 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) -import asciidoctor ; -# import boostbook ; +using asciidoctor ; html assert.html : index.adoc ; -# docbook assert.docbook : index.adoc ; -# boostbook assert.html : assert.docbook : onehtml ; - install html_ : assert.html : html ; pdf assert.pdf : index.adoc ; From e4142c28337657832b253cd8e85cc1ede8f69831 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 16 Apr 2024 22:38:17 +0300 Subject: [PATCH 2/2] Switch back to import, because `using asciidoctor ;` overwrites the command --- doc/Jamfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Jamfile b/doc/Jamfile index 106dc59..539ce26 100644 --- a/doc/Jamfile +++ b/doc/Jamfile @@ -4,7 +4,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) -using asciidoctor ; +import asciidoctor ; html assert.html : index.adoc ;