2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Fix processing of path features.

This makes example/libraries fully working.


[SVN r56032]
This commit is contained in:
Vladimir Prus
2009-09-05 11:23:02 +00:00
parent 5feb1f44e1
commit a658fa2cf2

View File

@@ -158,7 +158,7 @@ def translate_paths (properties, path):
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)