From d39ce839d1d9a860dcc0dc2b61e9a19731cbed41 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 9 May 2020 16:36:21 +0300 Subject: [PATCH] Remove prefix from feature check messages --- checks/config.jam | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/checks/config.jam b/checks/config.jam index c5adfe7b..a19dd385 100644 --- a/checks/config.jam +++ b/checks/config.jam @@ -12,9 +12,7 @@ rule requires ( names + ) local result ; for name in $(names) { - local msg = "Boost.Config Feature Check: " ; - msg += $(name) ; - result += [ check-target-builds $(config-binding:D)//$(name) $(msg:J=) : : no ] ; + result += [ check-target-builds $(config-binding:D)//$(name) $(name) : : no ] ; } return $(result) ; }