Fix version requirement on Ninja feature.

pull/9496/head
Jussi Pakkanen 3 years ago
parent c1b686e395
commit ff38803d58
  1. 2
      mesonbuild/backend/ninjabackend.py

@ -575,7 +575,7 @@ class NinjaBackend(backends.Backend):
os.replace(tempfilename, outfilename) os.replace(tempfilename, outfilename)
mlog.cmd_ci_include(outfilename) # For CI debugging mlog.cmd_ci_include(outfilename) # For CI debugging
# Refresh Ninja's caches. https://github.com/ninja-build/ninja/pull/1685 # Refresh Ninja's caches. https://github.com/ninja-build/ninja/pull/1685
if mesonlib.version_compare(self.ninja_version, '>=1.10.2') and os.path.exists('.ninja_deps'): if mesonlib.version_compare(self.ninja_version, '>=1.10.0') and os.path.exists('.ninja_deps'):
subprocess.call(self.ninja_command + ['-t', 'restat']) subprocess.call(self.ninja_command + ['-t', 'restat'])
subprocess.call(self.ninja_command + ['-t', 'cleandead']) subprocess.call(self.ninja_command + ['-t', 'cleandead'])
self.generate_compdb() self.generate_compdb()

Loading…
Cancel
Save