|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r79945 - trunk/tools/build/v2/build
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-09 06:56:50
Author: jurko
Date: 2012-08-09 06:56:50 EDT (Thu, 09 Aug 2012)
New Revision: 79945
URL: http://svn.boost.org/trac/boost/changeset/79945
Log:
Boost Build cleanup - minor stylistic code change.
Text files modified:
trunk/tools/build/v2/build/project.jam | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
Modified: trunk/tools/build/v2/build/project.jam
==============================================================================
--- trunk/tools/build/v2/build/project.jam (original)
+++ trunk/tools/build/v2/build/project.jam 2012-08-09 06:56:50 EDT (Thu, 09 Aug 2012)
@@ -81,13 +81,12 @@
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-]) ;
}
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk