Remove prefix from feature check messages

This commit is contained in:
Peter Dimov
2020-05-09 16:36:21 +03:00
parent 982bd905f3
commit d39ce839d1

View File

@ -12,9 +12,7 @@ rule requires ( names + )
local result ; local result ;
for name in $(names) for name in $(names)
{ {
local msg = "Boost.Config Feature Check: " ; result += [ check-target-builds $(config-binding:D)//$(name) $(name) : : <build>no ] ;
msg += $(name) ;
result += [ check-target-builds $(config-binding:D)//$(name) $(msg:J=) : : <build>no ] ;
} }
return $(result) ; return $(result) ;
} }