summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2015-12-28 05:29:34 +1100
committerMichael Palimaka <kensington@gentoo.org>2015-12-28 05:29:54 +1100
commit9dbae8b3dc3cb217c885c168656b7c9f6ad026ce (patch)
tree8565644df156de767191dab73ce204924829fde5 /dev-util/kdevelop/files
parentapp-text/jabref-bin: Version bump. (diff)
downloadgentoo-9dbae8b3dc3cb217c885c168656b7c9f6ad026ce.tar.gz
gentoo-9dbae8b3dc3cb217c885c168656b7c9f6ad026ce.tar.bz2
gentoo-9dbae8b3dc3cb217c885c168656b7c9f6ad026ce.zip
dev-util/kdevelop*: remove old
Diffstat (limited to 'dev-util/kdevelop/files')
-rw-r--r--dev-util/kdevelop/files/kdevelop-4.7.1-gdb.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/dev-util/kdevelop/files/kdevelop-4.7.1-gdb.patch b/dev-util/kdevelop/files/kdevelop-4.7.1-gdb.patch
deleted file mode 100644
index 4643310bfffc..000000000000
--- a/dev-util/kdevelop/files/kdevelop-4.7.1-gdb.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 633b49c4bd7e434185c69a3dea1841755b75dcba Mon Sep 17 00:00:00 2001
-From: Fernando Rodriguez <frodriguez.developer@outlook.com>
-Date: Sun, 2 Aug 2015 16:20:37 +0200
-Subject: [PATCH] Set the replyReceived flag only if the current command is
- exec-run.
-
-Fixes various MI errors in remote debugging scenarios.
-
-BUG: 346827
----
- debuggers/gdb/gdb.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/debuggers/gdb/gdb.cpp b/debuggers/gdb/gdb.cpp
-index 4642087..df9f3b0 100644
---- a/debuggers/gdb/gdb.cpp
-+++ b/debuggers/gdb/gdb.cpp
-@@ -255,7 +255,8 @@ void GDB::processLine(const QByteArray& line)
- emit internalCommandOutput(QString::fromUtf8(line) + '\n');
-
- if (result.reason == "thread-group-started") {
-- receivedReply_ = true;
-+ if (currentCmd_->cmdToSend().contains("exec-run"))
-+ receivedReply_ = true;
- // (gdb) -exec-run
- // =thread-group-started,id="i1",pid="16768"
- if (line.contains("pid=\"")) {
---
-2.4.6
-