mirror of https://github.com/kiwix/libkiwix.git
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.
This commit is contained in:
parent
550b6df414
commit
b9696dceac
|
@ -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')
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue