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

Path handling fixes.

[SVN r17952]
This commit is contained in:
Vladimir Prus
2003-03-17 07:44:33 +00:00
parent 487bcf33b9
commit 110f86cea0
2 changed files with 4 additions and 2 deletions

View File

@@ -312,7 +312,8 @@ module project-root-context
{
import project ;
import path ;
project.use $(id) : [ path.root $(location) [ project-root get-location ] ] ;
project.use $(id) : [ path.root
[ path.make $(location) ] [ project-root get-location ] ] ;
}
}

View File

@@ -608,7 +608,8 @@ module project-rules {
{
import project ;
local attributes = [ project.attributes $(__name__) ] ;
project.use $(id) : [ path.root $(where) [ $(attributes).get location ] ] ;
project.use $(id) : [ path.root
[ path.make $(where) ] [ $(attributes).get location ] ] ;
}
rule build-project ( dir )