From 9695ddfc7062f01b5e8ec7f6756b71be62536eec Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 1 Nov 2023 11:10:22 +0000 Subject: [PATCH] Revert "gio/tests: Add test generated txt as the resources test dependency" This reverts commit 0b9900e4e7504f929e306c957607ae072316792d. The dependency was added in the wrong place: `test-generated.txt` is needed when compiling `test.gresource`, not when compiling the test which ultimately uses that gresource. See !3671 and #3163. --- 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 d9893c1af..bc436fb79 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, test_generated_txt], + 'depends' : resource_plugin, }, } endif