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

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.

[SVN r46972]
This commit is contained in:
Jurko Gospodnetić
2008-07-01 17:24:41 +00:00
parent 9e5617646b
commit c5669aa936

View File

@@ -282,13 +282,13 @@ rule collect ( target : source : properties * )
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) ;
}