From beeacb20670f13df432a646cb89c55a161a005ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 1 Jul 2008 06:26:14 +0000 Subject: [PATCH] Fixed a bug in Boost Build's doxygen.jam toolset causing it to fail in case the build dir is specified as an absolute path. [SVN r46940] --- v2/tools/doxygen.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/doxygen.jam b/v2/tools/doxygen.jam index f0cff40bc..d11abe47e 100644 --- a/v2/tools/doxygen.jam +++ b/v2/tools/doxygen.jam @@ -282,7 +282,7 @@ rule collect ( target : source : properties * ) local source-path = [ path.make [ on $(source) return $(LOCATE) ] ] ; local collect-path - = [ path.join [ path.pwd ] $(source-path) $(source:B) ] ; + = [ path.root [ path.pwd ] [ path.join $(source-path) $(source:B) ] ] ; local real-source = [ path.native [ path.join [ path.native $(collect-path) ] index.xml ] ] ; xsltproc.xslt $(target) : $(real-source) $(collect-xsl-dir:S=.xsl)