|
Boost-Commit : |
From: jurko.gospodnetic_at_[hidden]
Date: 2008-07-01 13:24:42
Author: jurko
Date: 2008-07-01 13:24:41 EDT (Tue, 01 Jul 2008)
New Revision: 46972
URL: http://svn.boost.org/trac/boost/changeset/46972
Log:
Brown paper bag fix for two buggy Boost Build doxygen.jam module changes from revisions 46940 & 46942. One was causing extra quotes to be added around the doxygen.xml.path xslt parameter value and another one was causing that path to be constructed incorrectly all together.
Text files modified:
trunk/tools/build/v2/tools/doxygen.jam | 4 ++--
1 files changed, 2 insertions(+), 2 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 13:24:41 EDT (Tue, 01 Jul 2008)
@@ -282,13 +282,13 @@
local source-path
= [ path.make [ on $(source) return $(LOCATE) ] ] ;
local collect-path
- = [ path.root [ path.pwd ] [ path.join $(source-path) $(source:B) ] ] ;
+ = [ path.root [ path.join $(source-path) $(source:B) ] [ path.pwd ] ] ;
local native-path
= [ path.native $(collect-path) ] ;
local real-source
= [ path.native [ path.join $(collect-path) index.xml ] ] ;
xsltproc.xslt $(target) : $(real-source) $(collect-xsl-dir:S=.xsl)
- : <xsl:param>doxygen.xml.path="$(native-path)" ;
+ : <xsl:param>doxygen.xml.path=$(native-path) ;
}
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