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

Boost Build cleanup - minor stylistic change.

[SVN r79889]
This commit is contained in:
Jurko Gospodnetić
2012-08-06 15:34:07 +00:00
parent 6ea2add103
commit 1c814ddb98

View File

@@ -556,9 +556,12 @@ local rule should-clean-project ( project )
# seen. Otherwise, we would not be able to refer to subprojects using target
# ids.
local current-project ;
if [ project.find "." : "." ]
{
current-project = [ project.target [ project.load "." ] ] ;
local current-module = [ project.find "." : "." ] ;
if $(current-module)
{
current-project = [ project.target $(current-module) ] ;
}
}
# Load the default toolset module if no other has already been specified.