From 1853ecc2a82e1cdb1269068156bcf3de0c9ddd7a Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Thu, 27 May 2010 03:36:44 +0000 Subject: [PATCH] Use forward slashes in path parameters to xsltproc. This should hopefully make the main doc build work with cygwin tools [SVN r62256] --- v2/tools/xsltproc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/xsltproc.jam b/v2/tools/xsltproc.jam index 67dfda8e8..7521bf0d3 100644 --- a/v2/tools/xsltproc.jam +++ b/v2/tools/xsltproc.jam @@ -102,7 +102,7 @@ rule compute-xslt-flags ( target : properties * ) for local dir in $(implicit-target-directories) { - flags += --path \"$(dir)\" ; + flags += --path \"$(dir:T)\" ; } return $(flags) ;