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