$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r83788 - trunk/tools/build/v2/build
From: steven_at_[hidden]
Date: 2013-04-06 19:29:36
Author: steven_watanabe
Date: 2013-04-06 19:29:35 EDT (Sat, 06 Apr 2013)
New Revision: 83788
URL: http://svn.boost.org/trac/boost/changeset/83788
Log:
Fix padding
Text files modified: 
   trunk/tools/build/v2/build/configure.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/build/configure.jam
==============================================================================
--- trunk/tools/build/v2/build/configure.jam	(original)
+++ trunk/tools/build/v2/build/configure.jam	2013-04-06 19:29:35 EDT (Sat, 06 Apr 2013)
@@ -74,8 +74,8 @@
 
 rule log-library-search-result ( library : result )
 {
-    local x = [ PAD "    - $(library) : $(result)" : $(.width) ] ;
-    log-check-result "$(x)" ;
+    local x = [ PAD "    - $(library)" : $(.width) ] ;
+    log-check-result "$(x) : $(result)" ;
 }