Merge pull request #192 from kiwix/workaround_depend_files

Workaround a bug in meson 0.43.0 about custom_target's depend_files option.
This commit is contained in:
Matthieu Gautier 2019-01-10 16:08:24 +01:00 committed by GitHub
commit a98594c084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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