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
No known key found for this signature in database
GPG Key ID: 447475A4CFBA2E24
1 changed files with 0 additions and 1 deletions

View File

@ -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)