|
Boost-Commit : |
From: ghost_at_[hidden]
Date: 2007-08-07 15:59:21
Author: vladimir_prus
Date: 2007-08-07 15:59:19 EDT (Tue, 07 Aug 2007)
New Revision: 38499
URL: http://svn.boost.org/trac/boost/changeset/38499
Log:
More quoting fixes. Closes #853.
Text files modified:
trunk/tools/build/v2/tools/xsltproc.jam | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/tools/build/v2/tools/xsltproc.jam
==============================================================================
--- trunk/tools/build/v2/tools/xsltproc.jam (original)
+++ trunk/tools/build/v2/tools/xsltproc.jam 2007-08-07 15:59:19 EDT (Tue, 07 Aug 2007)
@@ -47,12 +47,12 @@
for local param in [ feature.get-values <xsl:param> : $(properties) ]
{
local namevalue = [ regex.split $(param) "=" ] ;
- flags += --stringparam $(namevalue[1]) $(namevalue[2]) ;
+ flags += --stringparam $(namevalue[1]) \"$(namevalue[2])\" ;
}
# Translate <xsl:path>
for local path in [ feature.get-values <xsl:path> : $(properties) ]
{
- flags += --path $(path:G=) ;
+ flags += --path \"$(path:G=)\" ;
}
# Take care of implicit dependencies
@@ -70,7 +70,7 @@
for local dir in $(implicit-target-directories)
{
- flags += --path $(dir) ;
+ flags += --path \"$(dir)\" ;
}
return $(flags) ;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk