mirror of https://github.com/kiwix/libkiwix.git
Error if run_command() fails, remove meson warning
This commit is contained in:
parent
b404241d0b
commit
cd3d2110d9
|
@ -1,6 +1,7 @@
|
||||||
resource_files = run_command(res_manager,
|
resource_files = run_command(res_manager,
|
||||||
'--list-all',
|
'--list-all',
|
||||||
files('resources_list.txt')
|
files('resources_list.txt'),
|
||||||
|
check: true
|
||||||
).stdout().strip().split('\n')
|
).stdout().strip().split('\n')
|
||||||
|
|
||||||
preprocessed_resources = custom_target('preprocessed_resource_files',
|
preprocessed_resources = custom_target('preprocessed_resource_files',
|
||||||
|
@ -33,7 +34,8 @@ lib_resources = custom_target('resources',
|
||||||
i18n_resource_files = run_command(find_program('python3'),
|
i18n_resource_files = run_command(find_program('python3'),
|
||||||
'-c',
|
'-c',
|
||||||
'import sys; f=open(sys.argv[1]); print(f.read())',
|
'import sys; f=open(sys.argv[1]); print(f.read())',
|
||||||
files('i18n_resources_list.txt')
|
files('i18n_resources_list.txt'),
|
||||||
|
check: true
|
||||||
).stdout().strip().split('\n')
|
).stdout().strip().split('\n')
|
||||||
|
|
||||||
i18n_resources = custom_target('i18n_resources',
|
i18n_resources = custom_target('i18n_resources',
|
||||||
|
|
Loading…
Reference in New Issue