[gnome-contacts/fix-ci] data/meson: Explicitly specify data file as dep




commit 4565f2046b139af0e1525e13f857ec16e55d8426
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Fri May 14 16:00:38 2021 +0200

    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

 data/meson.build | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/data/meson.build b/data/meson.build
index 435ff20e..62fd8d60 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
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]