Skip to content

Commit 30fd674

Browse files
patrickelectricTheAssassin
authored andcommitted
util: Allow user to set qmake binary name over full path
Signed-off-by: Patrick José Pereira <[email protected]>
1 parent 6e8a50a commit 30fd674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ std::filesystem::path findQmake() {
6060

6161
// allow user to specify absolute path to qmake
6262
if (getenv("QMAKE")) {
63-
qmakePath = getenv("QMAKE");
63+
qmakePath = linuxdeploy::util::which(getenv("QMAKE"));
6464
ldLog() << "Using user specified qmake:" << qmakePath << std::endl;
6565
} else {
6666
// search for qmake

0 commit comments

Comments
 (0)