$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59838 - trunk
From: ghost_at_[hidden]
Date: 2010-02-22 02:15:13
Author: vladimir_prus
Date: 2010-02-22 02:15:13 EST (Mon, 22 Feb 2010)
New Revision: 59838
URL: http://svn.boost.org/trac/boost/changeset/59838
Log:
Only emit the summary if top-level 'forward' target was built.
Text files modified: 
   trunk/Jamroot |     8 ++++++--                                
   1 files changed, 6 insertions(+), 2 deletions(-)
Modified: trunk/Jamroot
==============================================================================
--- trunk/Jamroot	(original)
+++ trunk/Jamroot	2010-02-22 02:15:13 EST (Mon, 22 Feb 2010)
@@ -567,6 +567,7 @@
     
     rule generate ( property-set )
     {
+        modules.poke : top-level-targets : $(__name__) ;
         if $(self.build-type) = minimal
         {
             local expanded ;
@@ -667,8 +668,10 @@
 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 @@
       
     $(stage-abs)
 " ;
+        }    
     }    
 }
 IMPORT $(__name__) : say : : $(__name__).say ;