Fix for static library export issue in blis package (#22673)
This commit is contained in:
parent
73a4a5d394
commit
252f42f115
1 changed files with 4 additions and 1 deletions
|
@ -112,7 +112,10 @@ def darwin_fix(self):
|
|||
@property
|
||||
def libs(self):
|
||||
return find_libraries(
|
||||
["libblis", "libblis-mt"], root=self.prefix, recursive=True
|
||||
["libblis", "libblis-mt"],
|
||||
root=self.prefix,
|
||||
shared='+shared' in self.spec,
|
||||
recursive=True
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue