diff --git a/src/build/feature.jam b/src/build/feature.jam index 6c4544ca9..0e4e88830 100644 --- a/src/build/feature.jam +++ b/src/build/feature.jam @@ -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) ;