aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-02-02 15:04:42 +0100
committerSimon Ser <contact@emersion.fr>2022-02-02 15:04:42 +0100
commit4b05ecb8f7506e4e4d62532a0a3500c2b5711b38 (patch)
treed61155ad76955c971b378f6265ad5c67e6844d25 /doc
parentprotocol: xkb_v1 is null-terminated (diff)
downloadwayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar.gz
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar.bz2
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar.lz
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar.xz
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.tar.zst
wayland-4b05ecb8f7506e4e4d62532a0a3500c2b5711b38.zip
build: explicitly set check arg in run_command()
Fixes the following warning: WARNING: You should add the boolean check kwarg to the run_command call. It currently defaults to false, but it will default to true in future releases of meson. See also: https://github.com/mesonbuild/meson/issues/9300 Signed-off-by: Simon Ser <contact@emersion.fr>
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index f74b6b1..57c7180 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -18,7 +18,7 @@ if vers.version_compare('< 2.26.0')
endif
manpage_xsl = 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
-cmd = run_command(xsltproc, '--nonet', manpage_xsl)
+cmd = run_command(xsltproc, '--nonet', manpage_xsl, check: false)
if cmd.returncode() != 0
error('The style sheet for man pages providing "@0@" was not found.'.format(manpage_xsl))
endif