summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2016-01-05 09:40:30 -0500
committerErik Schnetter <schnetter@gmail.com>2016-01-05 09:40:30 -0500
commit24ced90913d7b819d0bec5375ab6cc0c54ceecd8 (patch)
tree0bd81120b9af6a6c56fadbcc5ee0799794330bb5 /var
parent0dcc87bd21f511048417923914cde654c7fb895e (diff)
downloadspack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.gz
spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.bz2
spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.xz
spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.zip
Correct `join_path` in package boost
Diffstat (limited to 'var')
-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: