Skip to content

Commit 3a8474a

Browse files
committed
build: Explicitly check return values when using run_command
meson warns about not providing explicitly the check argument. Signed-off-by: Daniel Wagner <[email protected]>
1 parent 521d8c3 commit 3a8474a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ if want_docs != 'false'
6565
input: file,
6666
output: '@[email protected]',
6767
configuration: conf)
68-
c = run_command(list_man_pages, subst)
68+
c = run_command(list_man_pages, subst, check: true)
6969
man_pages = c.stdout().split()
7070
foreach page : man_pages
7171
custom_target(

0 commit comments

Comments
 (0)