Merge pull request #771 from QuasarApp/task_770
All checks were successful
buildbot/DocsGenerator Build finished.
buildbot/AndroidBuilder_v8Qt6 Build finished.
buildbot/IOSCMakeBuilder Build finished.
buildbot/LinuxCMakeBuilderQt6 Build finished.
buildbot/WindowsCMakeBuilder Build finished.

Fixed qmake path check for qmake option in Qt 6.
This commit is contained in:
Andrei Yankovich 2023-08-28 17:41:09 +03:00 committed by GitHub
commit 097d82b7d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1218,7 +1218,7 @@ bool ConfigParser::initQmake() {
QFileInfo info(qmake);
if (!info.isFile() || (info.baseName() != "qmake")) {
if (!info.isFile()) {
QString qmakeFromRPath = DeployCore::findProcess(getRPathFromTargets(), "qmake");