diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-05-11 10:36:11 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-05-12 10:27:05 -0500 |
commit | 3526d9266079a2371e8b2d615fdacd60c59721bc (patch) | |
tree | 27f5ad690f31b7955842c86c3d74064950d4cd65 /var | |
parent | d7020434d9175b1b831ad5c1b4b2c8d2c10d2df9 (diff) | |
download | spack-3526d9266079a2371e8b2d615fdacd60c59721bc.tar.gz spack-3526d9266079a2371e8b2d615fdacd60c59721bc.tar.bz2 spack-3526d9266079a2371e8b2d615fdacd60c59721bc.tar.xz spack-3526d9266079a2371e8b2d615fdacd60c59721bc.zip |
Indentation fix
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/elk/package.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/elk/package.py b/var/spack/repos/builtin/packages/elk/package.py index 18c8e9e7bf..235b6fae0b 100644 --- a/var/spack/repos/builtin/packages/elk/package.py +++ b/var/spack/repos/builtin/packages/elk/package.py @@ -37,19 +37,19 @@ class Elk(Package): # Elk provides these libraries, but allows you to specify your own variant('blas', default=True, - description='Build with custom BLAS library') + description='Build with custom BLAS library') variant('lapack', default=True, - description='Build with custom LAPACK library') + description='Build with custom LAPACK library') variant('fft', default=True, - description='Build with custom FFT library') + description='Build with custom FFT library') # Elk does not provide these libraries, but allows you to use them variant('mpi', default=True, - description='Enable MPI parallelism') + description='Enable MPI parallelism') variant('openmp', default=True, - description='Enable OpenMP support') + description='Enable OpenMP support') variant('libxc', default=True, - description='Link to Libxc functional library') + description='Link to Libxc functional library') depends_on('blas', when='+blas') depends_on('lapack', when='+lapack') @@ -156,4 +156,3 @@ class Elk(Package): install_tree('examples', join_path(prefix, 'examples')) install_tree('species', join_path(prefix, 'species')) - |