Merge pull request #335 from boostorg/pr/feature-check-message

Remove prefix from feature check messages
This commit is contained in:
jzmaddock
2020-07-25 19:26:44 +01:00
committed by GitHub

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) ;
} }