Skip to content

Commit ecde8a0

Browse files
walterbrebelsTheAssassin
authored andcommitted
Add libexecs to path
1 parent ca603ce commit ecde8a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ int main(const int argc, const char *const *const argv) {
229229
<< std::endl;
230230

231231
std::ostringstream newPath;
232-
newPath << qtBinsPath.string() << ":" << getenv("PATH");
232+
newPath << qtBinsPath.string() << ":" << qtLibexecsPath.string() << ":" << getenv("PATH");
233233
setenv("PATH", newPath.str().c_str(), true);
234-
ldLog() << "Prepending QT_INSTALL_BINS path to $PATH, new $PATH:" << newPath.str() << std::endl;
234+
ldLog() << "Prepending QT_INSTALL_BINS and QT_INSTALL_LIBEXECS paths to $PATH, new $PATH:" << newPath.str() << std::endl;
235235

236236

237237
auto qtModulesToDeploy = foundQtModules;

0 commit comments

Comments
 (0)