From ffdee634f4fdc3c1de0c78b7f3b6310b84b8c352 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 9 Apr 2020 23:56:31 +0200 Subject: [PATCH] Do not force a reconfigure of meson projects. If meson.build changes, the ninja command will rebuild it. And its avoid us to delete the build directory. --- kiwixbuild/dependencies/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kiwixbuild/dependencies/base.py b/kiwixbuild/dependencies/base.py index d43a90d..eef32d4 100644 --- a/kiwixbuild/dependencies/base.py +++ b/kiwixbuild/dependencies/base.py @@ -466,6 +466,7 @@ class MesonBuilder(Builder): return 'static' if self.buildEnv.platformInfo.static else 'shared' def _configure(self, context): + context.no_skip = False context.try_skip(self.build_path) if os.path.exists(self.build_path): shutil.rmtree(self.build_path)