Changed keyword argument 'recurse' to 'recursive'

This commit is contained in:
alalazo
2017-08-03 17:21:40 +02:00
committed by Todd Gamblin
parent efd2a95781
commit e72b69732e
17 changed files with 21 additions and 19 deletions

View File

@@ -113,7 +113,7 @@ class Elemental(CMakePackage):
def libs(self):
shared = True if '+shared' in self.spec else False
return find_libraries(
'libEl', root=self.prefix, shared=shared, recurse=True
'libEl', root=self.prefix, shared=shared, recursive=True
)
@when('@0.87.6:')