From 733d202e9dc14889bbcdf907f2a403537d1fdf43 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Wed, 19 Sep 2007 19:29:31 +0000 Subject: [PATCH] Make get-values preserve the values exactly, instead of treating them like paths and hence munging them. [SVN r39395] --- src/build/feature.jam | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) ;