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

Boost Build cleanup - minor stylistic code change.

[SVN r79945]
This commit is contained in:
Jurko Gospodnetić
2012-08-09 10:56:50 +00:00
parent f5d6f30e2c
commit 9bb216654a

View File

@@ -81,13 +81,12 @@ rule load ( jamfile-location )
rule load-used-projects ( module-name )
{
local used = [ modules.peek $(module-name) : .used-projects ] ;
local root-location = [ attribute $(module-name) location ] ;
local location = [ attribute $(module-name) location ] ;
while $(used)
{
local id = $(used[1]) ;
local where = [ path.make $(used[2]) ] ;
local location = [ path.root $(where) $(root-location) ] ;
register-id $(id) : [ load $(location) ] ;
register-id $(id) : [ load [ path.root $(where) $(location) ] ] ;
used = $(used[3-]) ;
}
}