summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels De Graef <nielsdegraef@gmail.com>2021-05-14 16:00:38 +0200
committerNiels De Graef <nielsdegraef@gmail.com>2021-05-14 16:00:38 +0200
commit4565f2046b139af0e1525e13f857ec16e55d8426 (patch)
tree135942c65560ebb49aa6005277f18633a7d8b6ef
parent7486fa2d3d27a56a569129bee87b0d499b4429e3 (diff)
downloadgnome-contacts-4565f2046b139af0e1525e13f857ec16e55d8426.tar.gz
data/meson: Explicitly specify data file as dep
This fixes an error which was occurring in the CI because the latest version of Meson requires explicitly adding dependencies. See https://gitlab.gnome.org/GNOME/gnome-build-meta/-/issues/372
-rw-r--r--data/meson.build10
1 files changed, 8 insertions, 2 deletions
diff --git a/data/meson.build b/data/meson.build
index 435ff20..62fd8d6 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -33,7 +33,10 @@ if desktop_file_validate.found()
suite: 'data',
args: [
desktop_file.full_path()
- ]
+ ],
+ depends: [
+ desktop_file,
+ ],
)
endif
@@ -59,7 +62,10 @@ if appstream_util.found()
suite: 'data',
args: [
'validate-relax', '--nonet', appdata_file.full_path()
- ]
+ ],
+ depends: [
+ appdata_file,
+ ],
)
endif