aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/gdbinit.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/chromium/gdbinit.patch')
-rw-r--r--community/chromium/gdbinit.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/community/chromium/gdbinit.patch b/community/chromium/gdbinit.patch
new file mode 100644
index 00000000000..5958631ec6b
--- /dev/null
+++ b/community/chromium/gdbinit.patch
@@ -0,0 +1,22 @@
+aports is a git tree so these git commands get the wrong directory
+--- a/tools/gdb/gdbinit
++++ b/tools/gdb/gdbinit
+@@ -50,17 +50,7 @@
+
+ def set_src_dir(compile_dir):
+ global src_dir
+- git = subprocess.Popen(
+- ['git', '-C', compile_dir, 'rev-parse', '--show-toplevel'],
+- stdout=subprocess.PIPE,
+- stderr=subprocess.PIPE)
+- src_dir, _ = git.communicate()
+- if git.returncode:
+- return
+- if isinstance(src_dir, str):
+- src_dir = src_dir.rstrip()
+- else:
+- src_dir = src_dir.decode('utf-8').rstrip()
++ src_dir = os.path.abspath(os.getcwd())
+
+ load_libcxx_pretty_printers(src_dir)
+