Navigation Menu

Skip to content

Commit

Permalink
Fix bad checks on Boost release archive structure.
Browse files Browse the repository at this point in the history
The headers on a Boost release are only present at the root. This adds that to the include search path so that the checks can also work on that structure.
  • Loading branch information
grafikrobot committed Aug 12, 2019
1 parent 29095ce commit 73d7b4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check/predef.jam
Expand Up @@ -88,7 +88,7 @@ local rule check_target ( language key : requirements * )
local source_path
= $(predef_jam:D)/predef_check_cc_as_$(language).$(.$(language).ext) ;
local include_path
= $(predef_jam:D)/../../include ;
= $(predef_jam:D)/../../include $(BOOST_ROOT) ;
obj predef_check_cc_$(key)
: $(source_path)
: <include>$(include_path) $(requirements) ;
Expand Down

0 comments on commit 73d7b4f

Please sign in to comment.