$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80008 - trunk/tools/build/v2/build
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-13 11:07:04
Author: jurko
Date: 2012-08-13 11:07:02 EDT (Mon, 13 Aug 2012)
New Revision: 80008
URL: http://svn.boost.org/trac/boost/changeset/80008
Log:
Corrected an malformed Boost Build error message displayed when property definitions are encountered in a basic-target's 'sources' constructor parameter.
Text files modified: 
   trunk/tools/build/v2/build/targets.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/build/targets.jam
==============================================================================
--- trunk/tools/build/v2/build/targets.jam	(original)
+++ trunk/tools/build/v2/build/targets.jam	2012-08-13 11:07:02 EDT (Mon, 13 Aug 2012)
@@ -1134,8 +1134,8 @@
         if $(sources:G)
         {
             import errors : user-error : errors.user-error ;
-            errors.user-error properties found in the 'sources' parameter for
-                [ full-name ] ;
+            errors.user-error properties found "in" the 'sources' parameter
+                "for" [ full-name ] ;
         }
     }