2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

More quoting fixes. Closes #853.

[SVN r38499]
This commit is contained in:
Vladimir Prus
2007-08-07 19:59:19 +00:00
parent 720e16e0bc
commit cb599e166a

View File

@@ -47,12 +47,12 @@ rule compute-xslt-flags ( target : properties * )
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 @@ rule compute-xslt-flags ( target : properties * )
for local dir in $(implicit-target-directories)
{
flags += --path $(dir) ;
flags += --path \"$(dir)\" ;
}
return $(flags) ;