From 9d9d11fe805b40dd373168fbb0834dc2e02c6f7d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 16 Oct 2018 06:24:42 +0300 Subject: [PATCH] Use glob instead of path.glob, as it's relative to the Jamfile --- doc/Jamfile.v2 | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index 22fbb8d..d920e33 100755 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -3,12 +3,9 @@ # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) import docutils ; -import path ; -path-constant HERE : . ; - -sources = [ path.glob $(HERE) : *.rst ] ; -bases = $(sources:D=:S=) ; +sources = [ glob *.rst ] ; +bases = $(sources:S=) ; # This is a path relative to the html/ subdirectory where the # generated output will eventually be moved.