From c5669aa936bd7bbf49edd5ed0d31f3b12e9e409e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 1 Jul 2008 17:24:41 +0000 Subject: [PATCH] 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] --- v2/tools/doxygen.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/tools/doxygen.jam b/v2/tools/doxygen.jam index 64c9f9d6b..b4f95b06a 100644 --- a/v2/tools/doxygen.jam +++ b/v2/tools/doxygen.jam @@ -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) - : doxygen.xml.path="$(native-path)" ; + : doxygen.xml.path=$(native-path) ; }