Add boost157 for building under RHEL 6 with Software Collections.

This commit is contained in:
Jean-Paul Chaput 2019-03-07 20:02:44 +01:00
parent f107a68938
commit 9a872b10af
1 changed files with 2 additions and 1 deletions

View File

@ -139,7 +139,8 @@ class Builder:
if i: commandAsString += ' '
if ' ' in command[i]: commandAsString += '"'+command[i]+'"'
else: commandAsString += command[i]
command = [ 'scl', 'enable', 'devtoolset-%d' % self._devtoolset, commandAsString ]
command = [ 'scl', 'enable', 'boost157', 'devtoolset-%d' % self._devtoolset
, commandAsString ]
#print command
sys.stdout.flush ()