From 4ffa82b420ca17cd384f72b7ea2e5cad1145adb5 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] --- new/feature.jam | 2 +- v2/build/feature.jam | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/new/feature.jam b/new/feature.jam index 3f439a1af..b685b2235 100644 --- a/new/feature.jam +++ b/new/feature.jam @@ -536,7 +536,7 @@ rule get-values ( feature : properties * ) { if $(p:G) = $(feature) { - result += $(p:G=) ; + result += $(p:TG=) ; } } return $(result) ; diff --git a/v2/build/feature.jam b/v2/build/feature.jam index 3f439a1af..b685b2235 100644 --- a/v2/build/feature.jam +++ b/v2/build/feature.jam @@ -536,7 +536,7 @@ rule get-values ( feature : properties * ) { if $(p:G) = $(feature) { - result += $(p:G=) ; + result += $(p:TG=) ; } } return $(result) ;