gobject-introspection: Fix macos shared lib paths

Uses patch Nirbheek Chauhan's patch from this issue upstream issue:
https://gitlab.gnome.org/GNOME/gobject-introspection/issues/222

Fixes #40599
This commit is contained in:
Hamish Mackenzie
2018-09-07 22:17:06 +12:00
parent 61e0bcdb6c
commit 363f78fb4c
3 changed files with 39 additions and 2 deletions

View File

@@ -87,8 +87,8 @@
+ m = pattern.search(line)
if m:
del patterns[library]
- shlibs.append(m.group(1))
+ shlibs.append(os.path.join(options.fallback_libpath, m.group(1)))
- shlibs.append(_sanitize_install_name(m.group(1)))
+ shlibs.append(os.path.join(options.fallback_libpath, _sanitize_install_name(m.group(1))))
break
if len(patterns) > 0: