fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1--- a/mesonbuild/modules/gnome.py
2+++ b/mesonbuild/modules/gnome.py
3@@ -427,6 +427,10 @@
4 scan_command += ['--no-libtool', '--namespace=' + ns, '--nsversion=' + nsversion, '--warn-all',
5 '--output', '@OUTPUT@']
6
7+ fallback_libpath = girtarget.get_custom_install_dir()[0]
8+ if fallback_libpath is not None and isinstance(fallback_libpath, str) and len(fallback_libpath) > 0 and fallback_libpath[0] == "/":
9+ scan_command += ['--fallback-library-path=' + fallback_libpath]
10+
11 header = kwargs.pop('header', None)
12 if header:
13 if not isinstance(header, str):