openblas package: fix lib suffix construction in libs (#40242)
This commit is contained in:
parent
a236fce31f
commit
3f2f0cc146
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ def libs(self):
|
|||
search_shared = bool(spec.variants["shared"].value)
|
||||
suffix = spec.variants["symbol_suffix"].value
|
||||
if suffix != "none":
|
||||
name += suffix
|
||||
name = [x + suffix for x in name]
|
||||
|
||||
return find_libraries(name, spec.prefix, shared=search_shared, recursive=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue