From ac22caca6dd73503f1771cf9113940da9fe785e8 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 14 Nov 2023 08:16:42 +0000 Subject: [PATCH] Don't set context.no_skip on meson builder no_skip is thus computed automatically depending on project being our or not. We dont want to skip configure on our own projetcs (limited impact, simplifies deps mgmt) --- kiwixbuild/dependencies/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kiwixbuild/dependencies/base.py b/kiwixbuild/dependencies/base.py index a9136ec..d57102c 100644 --- a/kiwixbuild/dependencies/base.py +++ b/kiwixbuild/dependencies/base.py @@ -527,7 +527,6 @@ 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)