From b9696dceac984f7675479a83bfeaa51b911e0574 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 10 Jan 2019 15:59:42 +0100 Subject: [PATCH] Workaround a bug in meson 0.43.0 about custom_target's depend_files option. There is a bug in meson 0.43.0 about the option depend_files (mesonbuild/meson#2633) By using the `files('search_result.tmpl')`, we workaround the bug and have everything working whatever the meson version is. --- static/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/meson.build b/static/meson.build index 2f40a2d14..44f5c3004 100644 --- a/static/meson.build +++ b/static/meson.build @@ -7,5 +7,5 @@ lib_resources = custom_target('resources', '--hfile', '@OUTPUT1@', '--source_dir', '@OUTDIR@', '@INPUT@'], - depend_files: 'static/search_result.tmpl' + depend_files: files('search_result.tmpl') )