]> git.proxmox.com Git - mirror_lxcfs.git/commitdiff
meson: Set check argument on run_command
authorStéphane Graber <stgraber@ubuntu.com>
Wed, 9 Mar 2022 17:04:30 +0000 (12:04 -0500)
committerStéphane Graber <stgraber@ubuntu.com>
Wed, 9 Mar 2022 17:04:30 +0000 (12:04 -0500)
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
meson.build

index 69e3318c82f382adeaa0e4f0879679f88797156b..f8b8806c2699392e47fe621712a15dc0e2cced85 100644 (file)
@@ -18,7 +18,9 @@ project(
 cc = meson.get_compiler('c')
 
 # Templater.
-if run_command('python3', '-c', 'import jinja2').returncode() != 0
+if run_command(
+    'python3', '-c', 'import jinja2',
+    check: false).returncode() != 0
         error('python3 jinja2 missing')
 endif