From 37decb083ca026884ced4e8dc06766d00c5aa1a0 Mon Sep 17 00:00:00 2001 From: Roland Schwarz Date: Thu, 25 Oct 2007 07:52:25 +0000 Subject: [PATCH] More verbose "Skipping" message, telling what it is beeing skipped. [SVN r40458] --- src/build/targets.jam | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/build/targets.jam b/src/build/targets.jam index 9cddb74e5..758354209 100644 --- a/src/build/targets.jam +++ b/src/build/targets.jam @@ -1260,16 +1260,16 @@ class basic-target : abstract-target if $(rproperties[1]) = "@error" { ECHO [ targets.indent ] - "Skipping build: cannot compute common properties" ; + "Skipping build of: " [ full-name ] " cannot compute common properties" ; } else if [ $(rproperties).get ] = no { ECHO [ targets.indent ] - "Skipping build: no in common properties" ; + "Skipping build of: " [ full-name ] " no in common properties" ; } else { - ECHO [ targets.indent ] "Skipping build: unknown reason" ; + ECHO [ targets.indent ] "Skipping build of: " [ full-name] " unknown reason" ; } # We're here either because there's error computing