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)
This commit is contained in:
renaud gaudin
2023-11-14 08:16:42 +00:00
parent a063b91349
commit ac22caca6d

View File

@ -527,7 +527,6 @@ class MesonBuilder(Builder):
return 'static' if self.buildEnv.platformInfo.static else 'shared' return 'static' if self.buildEnv.platformInfo.static else 'shared'
def _configure(self, context): def _configure(self, context):
context.no_skip = False
context.try_skip(self.build_path) context.try_skip(self.build_path)
if os.path.exists(self.build_path): if os.path.exists(self.build_path):
shutil.rmtree(self.build_path) shutil.rmtree(self.build_path)