aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-10-29 19:04:32 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2021-10-29 19:04:32 +0300
commitc92331a2e9dee061f266f3ac7028b7ccbc6a7cef (patch)
tree2e61292593af99d259076df8d09513c361354d34
parent37ea997ca4e74360bfa31748c0e3b408b85591e3 (diff)
downloadmeson-ninjaverdown.zip
meson-ninjaverdown.tar.gz
meson-ninjaverdown.tar.bz2
Fix version requirement on Ninja feature.ninjaverdown
-rw-r--r--mesonbuild/backend/ninjabackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index 9679034..1f3238b 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -575,7 +575,7 @@ class NinjaBackend(backends.Backend):
os.replace(tempfilename, outfilename)
mlog.cmd_ci_include(outfilename) # For CI debugging
# 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.1') and os.path.exists('.ninja_deps'):
subprocess.call(self.ninja_command + ['-t', 'restat'])
subprocess.call(self.ninja_command + ['-t', 'cleandead'])
self.generate_compdb()