blob: 85d9fbbc44f292229df01a4d5558bda53258ee0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/app/qbs-setup-qt/setupqt.cpp.orig 2025-06-20 12:42:25 UTC
+++ src/app/qbs-setup-qt/setupqt.cpp
@@ -71,7 +71,7 @@ static QStringList qmakeExecutableNames()
{
const QString baseName = HostOsInfo::appendExecutableSuffix(QStringLiteral("qmake"));
QStringList lst(baseName);
- if (HostOsInfo::isLinuxHost()) {
+ if (true || HostOsInfo::isLinuxHost()) {
// Some distributions ship binaries called qmake-qt5 or qmake-qt4.
lst << baseName + QLatin1String("-qt5") << baseName + QLatin1String("-qt4");
}
|