aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-10-06 14:56:18 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-10-06 14:56:18 +0200
commit2b047a26800b41695c103a70add13c39e772f8a7 (patch)
treece9b5f848bbc5e5ef4edca147771dedbcd6acf80
parentf28018ab5bd93d7f3e249a18eb7f5e4811124978 (diff)
Building debugging helpers: Increase timeout to 80000ms.
Reviewed-by: hjk
-rw-r--r--src/libs/utils/buildablehelperlibrary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/buildablehelperlibrary.cpp b/src/libs/utils/buildablehelperlibrary.cpp
index e9fcdbce71..9a761e016a 100644
--- a/src/libs/utils/buildablehelperlibrary.cpp
+++ b/src/libs/utils/buildablehelperlibrary.cpp
@@ -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);