We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca603ce commit ecde8a0Copy full SHA for ecde8a0
src/main.cpp
@@ -229,9 +229,9 @@ int main(const int argc, const char *const *const argv) {
229
<< std::endl;
230
231
std::ostringstream newPath;
232
- newPath << qtBinsPath.string() << ":" << getenv("PATH");
+ newPath << qtBinsPath.string() << ":" << qtLibexecsPath.string() << ":" << getenv("PATH");
233
setenv("PATH", newPath.str().c_str(), true);
234
- ldLog() << "Prepending QT_INSTALL_BINS path to $PATH, new $PATH:" << newPath.str() << std::endl;
+ ldLog() << "Prepending QT_INSTALL_BINS and QT_INSTALL_LIBEXECS paths to $PATH, new $PATH:" << newPath.str() << std::endl;
235
236
237
auto qtModulesToDeploy = foundQtModules;
0 commit comments