aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/ui.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-01-30 10:52:11 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2019-01-30 13:54:16 +0530
commitc5a78c9e495058e61a4456fca6b6854b3823fc90 (patch)
treebeaff52bcda4f784ee1150d66ba4dab961d2aa1a /mesonbuild/dependencies/ui.py
parent940c6de3ae5941fb0b70ebd5a8ce85b524ed2182 (diff)
downloadmeson-c5a78c9e495058e61a4456fca6b6854b3823fc90.zip
meson-c5a78c9e495058e61a4456fca6b6854b3823fc90.tar.gz
meson-c5a78c9e495058e61a4456fca6b6854b3823fc90.tar.bz2
qt: Print the full path of the `qmake` binary found
Diffstat (limited to 'mesonbuild/dependencies/ui.py')
-rw-r--r--mesonbuild/dependencies/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py
index c2b5103..e23124c 100644
--- a/mesonbuild/dependencies/ui.py
+++ b/mesonbuild/dependencies/ui.py
@@ -362,7 +362,7 @@ class QtBaseDependency(ExternalDependency):
return
self.version = re.search(self.qtver + r'(\.\d+)+', stdo).group(0)
# Query library path, header path, and binary path
- mlog.log("Found qmake:", mlog.bold(self.qmake.get_name()), '(%s)' % self.version)
+ mlog.log("Found qmake:", mlog.bold(self.qmake.get_path()), '(%s)' % self.version)
stdo = Popen_safe(self.qmake.get_command() + ['-query'])[1]
qvars = {}
for line in stdo.split('\n'):