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:
parent
a063b91349
commit
ac22caca6d
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue