From 54579c68751d3670ed50879c8b72ab28503bd299 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 8 Dec 2007 16:04:34 +0000 Subject: [PATCH] Removed double quoting of Doxygen title. Fixes: http://lists.boost.org/boost-users/2007/12/32523.php [SVN r41888] --- v2/tools/doxygen.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/doxygen.jam b/v2/tools/doxygen.jam index 43736e99b..9950eac67 100644 --- a/v2/tools/doxygen.jam +++ b/v2/tools/doxygen.jam @@ -299,7 +299,7 @@ rule xml-to-boostbook ( target : source : properties * ) } for local title in [ feature.get-values : $(properties) ] { - xslt-properties += "boost.doxygen.reftitle=\"$(title)\"" ; + xslt-properties += "boost.doxygen.reftitle=$(title)" ; } xsltproc.xslt $(target) : $(source) $(d2b-xsl) : $(xslt-properties) ;