Merge pull request #302 from eschnett/eschnett/correct-boost
Correct `join_path` in package boost
This commit is contained in:
commit
84c7e457e9
@ -95,11 +95,11 @@ def determine_bootstrap_options(self, spec, options):
|
|||||||
with open('user-config.jam', 'w') as f:
|
with open('user-config.jam', 'w') as f:
|
||||||
if '+mpi' in spec:
|
if '+mpi' in spec:
|
||||||
f.write('using mpi : %s ;\n' %
|
f.write('using mpi : %s ;\n' %
|
||||||
joinpath(spec['mpi'].prefix.bin, 'mpicxx'))
|
join_path(spec['mpi'].prefix.bin, 'mpicxx'))
|
||||||
if '+python' in spec:
|
if '+python' in spec:
|
||||||
f.write('using python : %s : %s ;\n' %
|
f.write('using python : %s : %s ;\n' %
|
||||||
(spec['python'].version,
|
(spec['python'].version,
|
||||||
joinpath(spec['python'].prefix.bin, 'python')))
|
join_path(spec['python'].prefix.bin, 'python')))
|
||||||
|
|
||||||
def determine_b2_options(self, spec, options):
|
def determine_b2_options(self, spec, options):
|
||||||
if '+debug' in spec:
|
if '+debug' in spec:
|
||||||
|
Loading…
Reference in New Issue
Block a user