mumps: fix problem when using Intel OneAPI mkl static lib (#27725)

This commit is contained in:
Hector Barrios 2021-12-06 10:14:33 -06:00 committed by GitHub
parent 37a4c0ff59
commit 0106e6ec9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -360,7 +360,7 @@ def install(self, spec, prefix):
@property @property
def libs(self): def libs(self):
component_libs = ['*mumps*', 'pord'] component_libs = ['*mumps', 'mumps_common', 'pord']
return find_libraries(['lib' + comp for comp in component_libs], return find_libraries(['lib' + comp for comp in component_libs],
root=self.prefix.lib, root=self.prefix.lib,
shared=('+shared' in self.spec), shared=('+shared' in self.spec),