Skip to content

Commit

Permalink
Merge pull request #771 from QuasarApp/task_770
Browse files Browse the repository at this point in the history
Fixed qmake path check for qmake option in Qt 6.
  • Loading branch information
EndrII authored Aug 28, 2023
2 parents 001cf34 + a66897b commit 097d82b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Deploy/src/configparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 097d82b

Please sign in to comment.