Allow find_libraries to accept lists or strings (#3363)
* Allow find_libraries to accept lists or strings * Convert one more example from list to string
This commit is contained in:
@@ -62,7 +62,7 @@ class NetlibScalapack(Package):
|
||||
def scalapack_libs(self):
|
||||
shared = True if '+shared' in self.spec else False
|
||||
return find_libraries(
|
||||
['libscalapack'], root=self.prefix, shared=shared, recurse=True
|
||||
'libscalapack', root=self.prefix, shared=shared, recurse=True
|
||||
)
|
||||
|
||||
def install(self, spec, prefix):
|
||||
|
Reference in New Issue
Block a user