Skip to content

Commit

Permalink
ref #770 fix qmake file validation (qt6)
Browse files Browse the repository at this point in the history
  • Loading branch information
EndrII committed Aug 28, 2023
1 parent 001cf34 commit a66897b
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 a66897b

Please sign in to comment.