1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-10-31 18:55:22 +00:00

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`.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-06-22 04:13:38 +02:00
parent 7295607e32
commit 59fb343037

View file

@ -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')