Skip to content

Commit

Permalink
Perform b2 headers before building process_jam_log
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Nov 3, 2023
1 parent 190d04d commit 80d44c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testing/src/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,12 @@ def command_patch(self):
def command_setup(self):
self.command_patch()
self.build_if_needed(self.bjam,self.bjam_toolset)
headers_cmd = self.bjam_cmd(None, 'headers')
cd = os.getcwd()
self.log( 'Updating headers (%s)...' % headers_cmd )
os.chdir( self.boost_root )
utils.system( [ headers_cmd ] )
os.chdir( cd )
if self.pjl_toolset != 'python':
self.build_if_needed(self.process_jam_log,self.pjl_toolset)

Expand Down

0 comments on commit 80d44c5

Please sign in to comment.