From 6723f92a5cc504e79318ff28ad8cf4a2d06847e0 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 15 Dec 2010 16:50:57 +0100 Subject: [PATCH] Maemo: Fix remote debugging. Was broken by 1e362b0f8b0dfd712337df35cd26c5dc98dfc294. --- src/plugins/debugger/gdb/remotegdbprocess.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/gdb/remotegdbprocess.cpp b/src/plugins/debugger/gdb/remotegdbprocess.cpp index c88c0ba2d3..36c5df7b58 100644 --- a/src/plugins/debugger/gdb/remotegdbprocess.cpp +++ b/src/plugins/debugger/gdb/remotegdbprocess.cpp @@ -144,7 +144,7 @@ void RemoteGdbProcess::handleAppOutputReaderStarted() connect(m_appOutputReader.data(), SIGNAL(outputAvailable(QByteArray)), this, SLOT(handleAppOutput(QByteArray))); - QByteArray cmdLine = "DISPLAY=:0.0 " + Utils::QtcProcess::quoteArgUnix(m_command).toUtf8() + ' ' + QByteArray cmdLine = "DISPLAY=:0.0 " + m_command.toUtf8() + ' ' + Utils::QtcProcess::joinArgsUnix(m_cmdArgs).toUtf8() + " -tty=" + m_appOutputFileName; if (!m_wd.isEmpty()) -- 2.11.0