Merge pull request #302 from eschnett/eschnett/correct-boost

Correct `join_path` in package boost
This commit is contained in:
Todd Gamblin 2016-01-06 04:34:44 -08:00
commit 84c7e457e9

View File

@ -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: