From fd3a75d7f2da5e28fc7386126c8897f257365295 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 3 May 2018 09:21:31 +0200 Subject: [PATCH] QmakeProject: Show full qmake path for Effective qmake command This is for information only anyway, and leaving out the path makes it less useful for e.g. cut&paste to a terminal or to double-check whether the intended qmake binary is used. Change-Id: Id35ee37363f58377a9da2e18c3ec6d89caf54312 Reviewed-by: Alessandro Portale --- src/plugins/qmakeprojectmanager/qmakestep.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmakeprojectmanager/qmakestep.cpp b/src/plugins/qmakeprojectmanager/qmakestep.cpp index 4194c5348fb..565880893ac 100644 --- a/src/plugins/qmakeprojectmanager/qmakestep.cpp +++ b/src/plugins/qmakeprojectmanager/qmakestep.cpp @@ -471,7 +471,7 @@ QString QMakeStep::makeArguments() const QString QMakeStep::effectiveQMakeCall() const { BaseQtVersion *qtVersion = QtKitInformation::qtVersion(target()->kit()); - QString qmake = qtVersion ? qtVersion->qmakeCommand().fileName() : QString(); + QString qmake = qtVersion ? qtVersion->qmakeCommand().toUserOutput() : QString(); if (qmake.isEmpty()) qmake = tr(""); QString make = makeCommand();