From 4e9d28a099f5c1a882001fd7fe34719c6cb68f95 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] --- src/tools/xsltproc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/xsltproc.jam b/src/tools/xsltproc.jam index 67dfda8e8..7521bf0d3 100644 --- a/src/tools/xsltproc.jam +++ b/src/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) ;