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

Cleanups. No functional changes.

[SVN r18396]
This commit is contained in:
Vladimir Prus
2003-05-14 10:14:27 +00:00
parent c2174e7da1
commit f467d2c591
2 changed files with 3 additions and 4 deletions

View File

@@ -147,14 +147,14 @@ rule project-target ( name : project : requirements * : default-build * )
for local name in $(self.main-targets)
{
local t = [ main-target $(name) ] ;
result += [ $(t).set-property-adjuster $(property-adjuster) ] ;
$(t).set-property-adjuster $(property-adjuster) ;
}
local self-location = [ project.attribute $(self.project) location ] ;
for local pn in [ project.attribute $(self.project) projects-to-build ]
{
local p = [ project.module-name [ path.join $(self-location) $(pn) ] ] ;
local t = [ project.target [ project.attribute $(p) location ] ] ;
result += [ $(t).set-property-adjuster $(property-adjuster) ] ;
$(t).set-property-adjuster $(property-adjuster) ;
}
}

View File

@@ -669,10 +669,9 @@ rule null-action ( targets + : property-set ? )
{
self.actualized = true ;
local actual-targets ;
for local i in [ targets ]
{
actual-targets += [ $(i).actualize ] ;
$(i).actualize ;
}
}
}