From 59fb343037f42ff0f95eedf9a637a643c476955b Mon Sep 17 00:00:00 2001 From: Evangelos Ribeiro Tzaras Date: Tue, 22 Jun 2021 04:13:38 +0200 Subject: [PATCH] meson: Fix typo in gnome.compile_schemas Logs during configuration revealed a typo: data/meson.build:72: WARNING: Passed invalid keyword argument "depends_files". WARNING: This will become a hard error in the future. `depends_file` is supposed to be `depend_file`. --- data/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/meson.build b/data/meson.build index a706d18..6f593cb 100644 --- a/data/meson.build +++ b/data/meson.build @@ -70,7 +70,7 @@ install_data( schema_src = 'sm.puri.Calls.gschema.xml' compiled = gnome.compile_schemas(build_by_default: true, - depends_files: files(schema_src)) + depend_files: files(schema_src)) install_data(schema_src, install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')