diff options
-rw-r--r-- | var/spack/repos/builtin/packages/siesta/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/siesta/package.py b/var/spack/repos/builtin/packages/siesta/package.py index 4053d5c6db..2779e8420a 100644 --- a/var/spack/repos/builtin/packages/siesta/package.py +++ b/var/spack/repos/builtin/packages/siesta/package.py @@ -45,6 +45,8 @@ class Siesta(Package): # Intel's mpiifort is not found 'MPIFC=%s' % spec['mpi'].mpifc ] + if self.spec.satisfies('%gcc'): + configure_args.append('FCFLAGS=-ffree-line-length-0') for d in ['Obj', 'Obj_trans']: with working_dir(d, create=True): sh('../Src/configure', *configure_args) |