From 1b9636c8d920e8131e8f3a58e62392b161411c87 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 21 Nov 2024 16:55:34 +0100 Subject: [PATCH] QtSupport: Don't suggest to run "make install" ...if a Qt version is not properly installed. The command is "make install" for Qt5. For Qt6, it's "ninja install", but only if a Ninja generator is used. Since an error message isn't the right place for a "How to install Qt" document, remove the suggestion altogether. Change-Id: I0b50c97183e2fcd65b4cde236e5489707f1bc708 Reviewed-by: Alexey Edelev --- src/plugins/qtsupport/baseqtversion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qtsupport/baseqtversion.cpp b/src/plugins/qtsupport/baseqtversion.cpp index 28cc8b9c672..d6d94cac993 100644 --- a/src/plugins/qtsupport/baseqtversion.cpp +++ b/src/plugins/qtsupport/baseqtversion.cpp @@ -701,7 +701,7 @@ QString QtVersion::invalidReason() const if (!d->m_qmakeIsExecutable) return Tr::tr("qmake does not exist or is not executable"); if (!d->data().installed) - return Tr::tr("Qt version is not properly installed, please run make install"); + return Tr::tr("Qt version is not properly installed"); if (binPath().isEmpty()) return Tr::tr("Could not determine the path to the binaries of the Qt installation, " "maybe the qmake path is wrong?");