From 2b047a26800b41695c103a70add13c39e772f8a7 Mon Sep 17 00:00:00 2001
From: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Date: Wed, 6 Oct 2010 14:56:18 +0200
Subject: [PATCH] Building debugging helpers: Increase timeout to 80000ms.

Reviewed-by: hjk
---
 src/libs/utils/buildablehelperlibrary.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libs/utils/buildablehelperlibrary.cpp b/src/libs/utils/buildablehelperlibrary.cpp
index e9fcdbce71d..9a761e016af 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);
-- 
GitLab