2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

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]
This commit is contained in:
Jurko Gospodnetić
2008-07-01 06:26:14 +00:00
parent 476f8ec8d6
commit beeacb2067

View File

@@ -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)