From 7ed3c0d3cfed61268bd97052ea3d39106ed78d92 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Thu, 8 May 2003 12:26:38 +0000 Subject: [PATCH] Bugfix. * new/feature.jam (get-values): Don't change slash direction on windows. The bug can be seen by reverting this change and adding import feature ; ECHO [ feature.get-values : a/b/c.dll ] ; to 'project-root.jam' of examples-v2/hello. [SVN r18366] --- src/build/feature.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/feature.jam b/src/build/feature.jam index 3f439a1af..b685b2235 100644 --- a/src/build/feature.jam +++ b/src/build/feature.jam @@ -536,7 +536,7 @@ rule get-values ( feature : properties * ) { if $(p:G) = $(feature) { - result += $(p:G=) ; + result += $(p:TG=) ; } } return $(result) ;