2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +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 26281fe0d4
commit 08458f4597

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) ;