Skip to content
Snippets Groups Projects
Unverified Commit 9f7255da authored by Veselin Dobrev's avatar Veselin Dobrev Committed by GitHub
Browse files

mesa: re-introduce the libs property (#15716)

They were originally added in #8904 and later removed (why?) in #10482.
parent db67b78f
Branches
Tags
No related merge requests found
...@@ -174,3 +174,11 @@ def configure_args(self): ...@@ -174,3 +174,11 @@ def configure_args(self):
args.append('--with-dri-drivers=' + ','.join(args_dri_drivers)) args.append('--with-dri-drivers=' + ','.join(args_dri_drivers))
return args return args
@property
def libs(self):
for dir in ['lib64', 'lib']:
libs = find_libraries('libGL', join_path(self.prefix, dir),
shared=True, recursive=False)
if libs:
return libs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment