dealii: workaround for concretization bug (#4735)

* dealii: workaround for concretization bug

* trilinos: add Anasazi which got disabled recently
This commit is contained in:
Denis Davydov
2017-07-13 14:51:45 +02:00
committed by Adam J. Stewart
parent 1ecb389dcb
commit 92e6616a8a
2 changed files with 6 additions and 2 deletions

View File

@@ -123,6 +123,8 @@ class Trilinos(CMakePackage):
description='Compile with Amesos')
variant('amesos2', default=True,
description='Compile with Amesos2')
variant('anasazi', default=True,
description='Compile with Anasazi')
variant('ifpack', default=True,
description='Compile with Ifpack')
variant('ifpack2', default=True,
@@ -305,6 +307,8 @@ def cmake_args(self):
'ON' if '+gtest' in spec else 'OFF'),
'-DTrilinos_ENABLE_Teuchos:BOOL=%s' % (
'ON' if '+teuchos' in spec else 'OFF'),
'-DTrilinos_ENABLE_Anasazi:BOOL=%s' % (
'ON' if '+anasazi' in spec else 'OFF'),
])
if '+xsdkflags' in spec: