Skip to content
Snippets Groups Projects
Commit 2b047a26 authored by Friedemann Kleint's avatar Friedemann Kleint
Browse files

Building debugging helpers: Increase timeout to 80000ms.

Reviewed-by: hjk
parent f28018ab
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,7 @@ QString BuildableHelperLibrary::buildHelper(const QString &helperName, const QSt
if (!makeFullPath.isEmpty()) {
output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "Running %1 ...\n").arg(makeFullPath);
proc.start(makeFullPath, QStringList());
proc.waitForFinished();
proc.waitForFinished(80000);
output += proc.readAll();
} else {
output += QCoreApplication::translate("ProjectExplorer::BuildableHelperLibrary", "%1 not found in PATH\n").arg(makeCommand);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment