summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordt <qtc-committer@nokia.com>2010-01-14 17:26:18 +0100
committercon <qtc-committer@nokia.com>2010-01-14 18:16:51 +0100
commitee0e1bdd8ca6258f93b5cafd9c25ec8551763da6 (patch)
treee4c42c3bd2e76f75047245e4dc8085b0d53e3a03
parenta9f5bf5cd5bce9d10626289edca2680191c63e39 (diff)
downloadqt-creator-ee0e1bdd8ca6258f93b5cafd9c25ec8551763da6.tar.gz
Fix for wrong version in gdb substitute for qt path
Reviewed-By: thorbjorn (cherry picked from commit 1da2e9e8d8d1a4ce6ed894b0154112692a0d8de1)
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 2aa844bd65..eaa4c6fd9b 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -4554,7 +4554,7 @@ void GdbEngine::handleInferiorPrepared()
postCommand(_("set substitute-path %1 %2")
.arg(qtBuildPath).arg(qtInstallPath));
#elif defined(Q_OS_UNIX) && !defined (Q_OS_MAC)
- qtBuildPath = _("/var/tmp/qt-x11-src-4.6.0");
+ qtBuildPath = _("/var/tmp/qt-x11-src-4.6.1");
postCommand(_("set substitute-path %1 %2")
.arg(qtBuildPath).arg(qtInstallPath));
#endif