aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/dependencies/base.py')
-rw-r--r--mesonbuild/dependencies/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py
index 1666e0c..06ea1c3 100644
--- a/mesonbuild/dependencies/base.py
+++ b/mesonbuild/dependencies/base.py
@@ -365,8 +365,8 @@ class ExternalDependency(Dependency, HasNativeKwarg):
if not self.is_found:
found_msg = ['Dependency', mlog.bold(self.name), 'found:']
found_msg += [mlog.red('NO'),
- 'found {!r} but need:'.format(self.version),
- ', '.join(["'{}'".format(e) for e in not_found])]
+ 'found', mlog.normal_cyan(self.version), 'but need:',
+ mlog.bold(', '.join(["'{}'".format(e) for e in not_found]))]
if found:
found_msg += ['; matched:',
', '.join(["'{}'".format(e) for e in found])]