aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-04-13 11:25:23 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2011-04-13 11:42:52 +0200
commit61790e54e8155e1e57bfdd372726dfb2117c4563 (patch)
treebf9bef36868ead7e124ab2c5f880007acce6fd9e
parentd0f7be188a89e9c956274485f8d755e3d9766c68 (diff)
Maemo: Use debugger set up by the SDK
Use the debugger set up by the Qt SDK instead of the one shipped with Maemo/Meego. Task-number: QTCREATORBUG-4299 Reviewed-by: Christian Kandeler
-rw-r--r--src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp
index 244ac387f1..2a6a180c84 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp
@@ -228,7 +228,7 @@ const MaemoToolChain *MaemoRunConfiguration::toolchain() const
const QString MaemoRunConfiguration::gdbCmd() const
{
- return QDir::toNativeSeparators(targetRoot() + QLatin1String("/bin/gdb"));
+ return QDir::toNativeSeparators(activeBuildConfiguration()->toolChain()->debuggerCommand());
}
MaemoDeployStep *MaemoRunConfiguration::deployStep() const