Skip to content

Commit 097d82b

Browse files
authored
Merge pull request #771 from QuasarApp/task_770
Fixed qmake path check for qmake option in Qt 6.
2 parents 001cf34 + a66897b commit 097d82b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Deploy/src/configparser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1218,7 +1218,7 @@ bool ConfigParser::initQmake() {
12181218

12191219
QFileInfo info(qmake);
12201220

1221-
if (!info.isFile() || (info.baseName() != "qmake")) {
1221+
if (!info.isFile()) {
12221222

12231223
QString qmakeFromRPath = DeployCore::findProcess(getRPathFromTargets(), "qmake");
12241224

0 commit comments

Comments
 (0)