From cdae76add5213b2632783c05cbbef233300b315a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Mon, 13 Aug 2012 15:07:02 +0000 Subject: [PATCH] Corrected an malformed Boost Build error message displayed when property definitions are encountered in a basic-target's 'sources' constructor parameter. [SVN r80008] --- src/build/targets.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build/targets.jam b/src/build/targets.jam index 113f08d67..d9be4c7e6 100644 --- a/src/build/targets.jam +++ b/src/build/targets.jam @@ -1134,8 +1134,8 @@ class basic-target : abstract-target 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 ] ; } }