From 0b9900e4e7504f929e306c957607ae072316792d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 27 Oct 2023 18:40:45 +0200 Subject: [PATCH] gio/tests: Add test generated txt as the resources test dependency This is required by the resources used in some tests, however we did not depend on it so we had some random build failures: https://gitlab.gnome.org/3v1n0/glib/-/jobs/3253787 --- gio/tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/tests/meson.build b/gio/tests/meson.build index bc436fb79..d9893c1af 100644 --- a/gio/tests/meson.build +++ b/gio/tests/meson.build @@ -982,7 +982,7 @@ if not meson.is_cross_build() gio_tests += { 'resources' : { 'extra_sources' : resources_extra_sources, - 'depends' : resource_plugin, + 'depends' : [resource_plugin, test_generated_txt], }, } endif