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




commit d74d5a8fc9bdac09364b53084631a7e58711a4ed
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Fri May 14 15:49:03 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.

 data/meson.build | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/data/meson.build b/data/meson.build
index beb49240..8930b23f 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -32,7 +32,10 @@ if appstream_util.found()
     suite: 'data',
     args: [
       'validate-relax', '--nonet', appdata_file.full_path()
-    ]
+    ],
+    depends: [
+      appdata_file,
+    ],
   )
 endif
 
@@ -61,6 +64,9 @@ if desktop_file_validate.found()
     args: [
       desktop_file.full_path()
     ]
+    depends: [
+      desktop_file,
+    ],
   )
 endif
 


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