mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 22:48:50 +00:00
Only emit the summary if top-level 'forward' target was built.
[SVN r59838]
This commit is contained in:
parent
25523918a4
commit
528a576eda
1 changed files with 6 additions and 2 deletions
8
Jamroot
8
Jamroot
|
@ -567,6 +567,7 @@ class top-level-target : alias-target-class
|
|||
|
||||
rule generate ( property-set )
|
||||
{
|
||||
modules.poke : top-level-targets : $(__name__) ;
|
||||
if $(self.build-type) = minimal
|
||||
{
|
||||
local expanded ;
|
||||
|
@ -667,8 +668,10 @@ explicit explain ;
|
|||
import build-system ;
|
||||
rule say ( ok ? )
|
||||
{
|
||||
if $(ok)
|
||||
{
|
||||
if forward in [ modules.peek : top-level-targets ]
|
||||
{
|
||||
if $(ok)
|
||||
{
|
||||
ECHO
|
||||
"\n\nThe Boost C++ Libraries were successfully built!
|
||||
|
||||
|
@ -680,6 +683,7 @@ The following directory should be added to linker library paths:
|
|||
|
||||
$(stage-abs)
|
||||
" ;
|
||||
}
|
||||
}
|
||||
}
|
||||
IMPORT $(__name__) : say : : $(__name__).say ;
|
||||
|
|
Loading…
Add table
Reference in a new issue