aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2017-06-09 12:59:34 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2017-06-09 20:21:01 +0530
commit38716f0fcb03c73ae1279036913e5b0ac41528a6 (patch)
tree94affbd862275f10ab1f911bd1de2dd7c1424a97 /mesonbuild
parent3a33a8ef49227c2fce1c0c7143e5529b4208d04e (diff)
downloadmeson-38716f0fcb03c73ae1279036913e5b0ac41528a6.zip
meson-38716f0fcb03c73ae1279036913e5b0ac41528a6.tar.gz
meson-38716f0fcb03c73ae1279036913e5b0ac41528a6.tar.bz2
tests: Improve llvm dependency test coverage
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/dependencies/dev.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/dev.py b/mesonbuild/dependencies/dev.py
index 8d64379..d7a7181 100644
--- a/mesonbuild/dependencies/dev.py
+++ b/mesonbuild/dependencies/dev.py
@@ -202,6 +202,8 @@ class LLVMDependency(ExternalDependency):
out = out.strip()
if p.returncode != 0:
continue
+ # FIXME: As soon as some llvm-config is found, version checks
+ # in further dependnecy() calls will be ignored
if version_req:
if version_compare(out, version_req, strict=True):
if cls.__best_found and version_compare(out, '<={}'.format(cls.__best_found), strict=True):