|
Boost-Commit : |
From: jurko.gospodnetic_at_[hidden]
Date: 2008-07-01 02:26:14
Author: jurko
Date: 2008-07-01 02:26:14 EDT (Tue, 01 Jul 2008)
New Revision: 46940
URL: http://svn.boost.org/trac/boost/changeset/46940
Log:
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.
Text files modified:
trunk/tools/build/v2/tools/doxygen.jam | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/tools/doxygen.jam
==============================================================================
--- trunk/tools/build/v2/tools/doxygen.jam (original)
+++ trunk/tools/build/v2/tools/doxygen.jam 2008-07-01 02:26:14 EDT (Tue, 01 Jul 2008)
@@ -282,7 +282,7 @@
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)
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk