ports/devel/qbs/files/patch-src_app_qbs-setup-qt_setupqt.cpp
Jason E. Hale 4ef37cf5a3 devel/qbs: Resurrect port and update to 2.6.0
Qbs is a tool that helps simplify the build process for developing
projects across multiple platforms. Qbs can be used for any software
project, regardless of programming language, toolkit, or libraries used.

Qbs is an all-in-one tool that generates a build graph from a high-level
project description (like qmake or CMake) and additionally undertakes the
task of executing the commands in the low-level build graph (like make).
2025-03-20 15:25:24 -04:00

11 lines
542 B
C++

--- src/app/qbs-setup-qt/setupqt.cpp.orig 2021-11-28 22:25:29 UTC
+++ src/app/qbs-setup-qt/setupqt.cpp
@@ -70,7 +70,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");
}