$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: grafikrobot_at_[hidden]
Date: 2008-01-08 23:34:12
Author: grafik
Date: 2008-01-08 23:34:12 EST (Tue, 08 Jan 2008)
New Revision: 42633
URL: http://svn.boost.org/trac/boost/changeset/42633
Log:
Revert various changes that break backward compatibility, and also some minor edits.
Text files modified: 
   trunk/tools/build/v2/test/module-actions/bootstrap.jam |    11 -----------                             
   1 files changed, 0 insertions(+), 11 deletions(-)
Modified: trunk/tools/build/v2/test/module-actions/bootstrap.jam
==============================================================================
--- trunk/tools/build/v2/test/module-actions/bootstrap.jam	(original)
+++ trunk/tools/build/v2/test/module-actions/bootstrap.jam	2008-01-08 23:34:12 EST (Tue, 08 Jan 2008)
@@ -6,16 +6,6 @@
 # Demonstration that module variables have the right effect in actions.
 
 
-rule display-action-output ( args * : target
-    : command status start end user system : output-lines * )
-{
-    for local line in $(output-lines)
-    {
-        ECHO $(line) ;
-    }
-}
-
-
 # Top-level rule that causes a target to be built by invoking the specified
 # action.
 rule make ( target : sources * : act )
@@ -23,7 +13,6 @@
     DEPENDS all : $(target) ;
     DEPENDS $(target) : $(sources) ;
     $(act) $(target) : $(sources) ;
-    __ACTION_RULE__ on $(target) = display-action-output ;
 }