summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-01-06 04:34:44 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2016-01-06 04:34:44 -0800
commit84c7e457e98d3629bc973cdd6b199ab5d5deafc4 (patch)
tree52e5c38ac983d24bc076415069c5103578c7df11
parenta65fa545142b606c4edff08e23d741b5050824ef (diff)
parent24ced90913d7b819d0bec5375ab6cc0c54ceecd8 (diff)
downloadspack-84c7e457e98d3629bc973cdd6b199ab5d5deafc4.tar.gz
spack-84c7e457e98d3629bc973cdd6b199ab5d5deafc4.tar.bz2
spack-84c7e457e98d3629bc973cdd6b199ab5d5deafc4.tar.xz
spack-84c7e457e98d3629bc973cdd6b199ab5d5deafc4.zip
Merge pull request #302 from eschnett/eschnett/correct-boost
Correct `join_path` in package boost
-rw-r--r--var/spack/packages/boost/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/packages/boost/package.py b/var/spack/packages/boost/package.py
index 9b7c22c53d..3427b74ad6 100644
--- a/var/spack/packages/boost/package.py
+++ b/var/spack/packages/boost/package.py
@@ -95,11 +95,11 @@ class Boost(Package):
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: