wcslib: fix darwin install name (#12868)
This commit is contained in:
parent
1fe94748d2
commit
b33d005267
@ -47,3 +47,9 @@ def configure_args(self):
|
||||
args.append('--without-x')
|
||||
|
||||
return args
|
||||
|
||||
@run_after('install')
|
||||
def darwin_fix(self):
|
||||
# The shared library is not installed correctly on Darwin; fix this
|
||||
if self.spec.satisfies('platform=darwin'):
|
||||
fix_darwin_install_name(self.prefix.lib)
|
||||
|
Loading…
Reference in New Issue
Block a user