summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2022-04-21 16:36:53 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2022-04-21 23:53:44 +0200
commit736fcea1d0377e6082e7cf738c3cd7cd42b3c1a0 (patch)
tree1cdcf637e16a25b02b4d1ffc61acaeeb4b957ad8
parent2accd4ceab25015b36d160b21b89d69ef0acb3f2 (diff)
downloadlibnotify-736fcea1d0377e6082e7cf738c3cd7cd42b3c1a0.tar.gz
build: Avoid warnings or mis-behavior in recent meson versions
In future meson will check the run_command result by default, while it's fine for us, it would cause our nicer error message not to work.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 088b7ed..a803f0d 100644
--- a/meson.build
+++ b/meson.build
@@ -66,7 +66,7 @@ if get_option('man')
'@INPUT@',
]
- testrun = run_command(xsltproc, '--nonet', stylesheet)
+ testrun = run_command(xsltproc, '--nonet', stylesheet, check: false)
if testrun.returncode() != 0
error('DocBook stylesheet for generating man pages not found, you need to install docbook-xsl-ns or similar package.')