diff options
author | Andrew Williams <williamsa89@cardiff.ac.uk> | 2016-08-22 13:44:21 +0100 |
---|---|---|
committer | Andrew Williams <williamsa89@cardiff.ac.uk> | 2016-08-22 13:44:21 +0100 |
commit | 65abd279cda184303922bb610f518009f2e6f6d0 (patch) | |
tree | fa610601d3ab4acc6f52520189253a12efb0436c | |
parent | 87d15212eb468348bf6de114a70e9d3ffbc85fe1 (diff) | |
download | spack-65abd279cda184303922bb610f518009f2e6f6d0.tar.gz spack-65abd279cda184303922bb610f518009f2e6f6d0.tar.bz2 spack-65abd279cda184303922bb610f518009f2e6f6d0.tar.xz spack-65abd279cda184303922bb610f518009f2e6f6d0.zip |
Renamed intelmpi as suggested
-rw-r--r-- | var/spack/repos/builtin/packages/plumed/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/plumed/package.py b/var/spack/repos/builtin/packages/plumed/package.py index 8a0e631463..02d9852add 100644 --- a/var/spack/repos/builtin/packages/plumed/package.py +++ b/var/spack/repos/builtin/packages/plumed/package.py @@ -115,10 +115,10 @@ class Plumed(Package): 'CXX={0}'.format(spec['mpi'].mpicxx) ]) - # If the MPI dependency is provided by the intelmpi package then + # If the MPI dependency is provided by the intel-mpi package then # the following additional argument is required to allow it to # build. - if spec.satisfies('^intelmpi'): + if spec.satisfies('^intel-mpi'): configure_opts.extend([ 'STATIC_LIBS=-mt_mpi' ]) |