$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56032 - trunk/tools/build/v2/build
From: ghost_at_[hidden]
Date: 2009-09-05 07:23:03
Author: vladimir_prus
Date: 2009-09-05 07:23:02 EDT (Sat, 05 Sep 2009)
New Revision: 56032
URL: http://svn.boost.org/trac/boost/changeset/56032
Log:
Fix processing of path features.
This makes example/libraries fully working.
Text files modified: 
   trunk/tools/build/v2/build/property.py |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/build/property.py
==============================================================================
--- trunk/tools/build/v2/build/property.py	(original)
+++ trunk/tools/build/v2/build/property.py	2009-09-05 07:23:02 EDT (Sat, 05 Sep 2009)
@@ -158,7 +158,7 @@
             p = split [1]
         
         if get_grist (p) and 'path' in feature.attributes (get_grist (p)):
-            values = __re_two_ampersands.split (forward_slashes (get_grist (p)))
+            values = __re_two_ampersands.split (forward_slashes (replace_grist (p, "")))
 
             t = [os.path.join(path, v) for v in values]
             t = '&&'.join (t)