evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / gn / gnome-builder / fix-finding-test-typelibs.patch
blob1c6c663c69a77e9134d1a8e74a2e6d7adb10734c
1 diff --git a/src/meson.build b/src/meson.build
2 index c9a44e418..cd9e466d6 100644
3 --- a/src/meson.build
4 +++ b/src/meson.build
5 @@ -35,7 +35,7 @@ foreach test_typelib_dep: test_typelib_deps
6 test_gi_typelib_path += [join_paths(test_typelib_dep.get_variable('libdir'), 'girepository-1.0')]
7 endforeach
8 test_env = [
9 - 'GI_TYPELIB_PATH=@0@'.format(':'.join(test_gi_typelib_path)),
10 + 'GI_TYPELIB_PATH=@0@:@1@'.format(':'.join(test_gi_typelib_path), run_command('sh', ['-c', 'echo "$GI_TYPELIB_PATH"']).stdout().strip()),
11 'G_TEST_SRCDIR=@0@/tests'.format(meson.current_source_dir()),
12 'G_TEST_BUILDDIR=@0@/tests'.format(meson.current_build_dir()),
13 'G_DEBUG=gc-friendly',