Correct join_path
in package boost
This commit is contained in:
parent
0dcc87bd21
commit
24ced90913
1 changed files with 2 additions and 2 deletions
|
@ -95,11 +95,11 @@ def determine_bootstrap_options(self, spec, options):
|
|||
with open('user-config.jam', 'w') as f:
|
||||
if '+mpi' in spec:
|
||||
f.write('using mpi : %s ;\n' %
|
||||
joinpath(spec['mpi'].prefix.bin, 'mpicxx'))
|
||||
join_path(spec['mpi'].prefix.bin, 'mpicxx'))
|
||||
if '+python' in spec:
|
||||
f.write('using python : %s : %s ;\n' %
|
||||
(spec['python'].version,
|
||||
joinpath(spec['python'].prefix.bin, 'python')))
|
||||
join_path(spec['python'].prefix.bin, 'python')))
|
||||
|
||||
def determine_b2_options(self, spec, options):
|
||||
if '+debug' in spec:
|
||||
|
|
Loading…
Reference in a new issue