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

Make get-values preserve the values exactly, instead of treating them like paths and hence munging them.

[SVN r39395]
This commit is contained in:
Rene Rivera
2007-09-19 19:29:31 +00:00
parent 6307475e08
commit 733d202e9d

View File

@@ -647,7 +647,10 @@ rule get-values ( feature : properties * )
{
if $(p:G) = $(feature)
{
result += $(p:G=) ;
#~ Use MATCH instead if :G= to get the value, in order to preserve
#~ the value intact instead of having bjam treat it as a decompossible
#~ path.
result += [ MATCH ">(.*)" : $(p) ] ;
}
}
return $(result) ;