From 1c8b8ef99bd33aeb991001caeaa31dbf53c57fac Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 12 Dec 2017 11:19:07 +0000 Subject: [PATCH] Stop using the deprecated (and broken) `mesontest`. `mesontest` command is deprecated since meson 0.42.0 and broken with last release (0.44.0) (see mesonbuild/meson#2761). Fix #97. --- kiwix-build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwix-build.py b/kiwix-build.py index eee3e19..cf390c0 100755 --- a/kiwix-build.py +++ b/kiwix-build.py @@ -254,7 +254,7 @@ class BuildEnv: self.meson_command = self._detect_meson() if not self.meson_command: sys.exit("ERROR: meson command not fount") - self.mesontest_command = "mesontest" + self.mesontest_command = "meson test" self.setup_build(options.target_platform) self.setup_toolchains() self.options = options