4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-03 04:59:35 +00:00

Merge pull request from QuasarApp/task_770

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

@ -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");