diff options
author | Erik Schnetter <schnetter@gmail.com> | 2016-01-05 09:40:30 -0500 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2016-01-05 09:40:30 -0500 |
commit | 24ced90913d7b819d0bec5375ab6cc0c54ceecd8 (patch) | |
tree | 0bd81120b9af6a6c56fadbcc5ee0799794330bb5 | |
parent | 0dcc87bd21f511048417923914cde654c7fb895e (diff) | |
download | spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.gz spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.bz2 spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.tar.xz spack-24ced90913d7b819d0bec5375ab6cc0c54ceecd8.zip |
Correct `join_path` in package boost
-rw-r--r-- | var/spack/packages/boost/package.py | 4 |
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: |