[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
86/169: gnu: gdb: Patch references to /bin/sh and add debug output.
From: |
guix-commits |
Subject: |
86/169: gnu: gdb: Patch references to /bin/sh and add debug output. |
Date: |
Thu, 28 Oct 2021 02:08:36 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit c2655d38903b71b7b7abda7ad9f9fab2152f2d0d
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Sep 14 16:09:47 2021 -0400
gnu: gdb: Patch references to /bin/sh and add debug output.
* gnu/packages/gdb.scm (gdb-10)[outputs]: Add a debug output.
[phases]{patch-paths}: New phase.
[inputs]: Add bash.
---
gnu/packages/gdb.scm | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm
index e51e17d..c3cdaf1 100644
--- a/gnu/packages/gdb.scm
+++ b/gnu/packages/gdb.scm
@@ -24,6 +24,7 @@
(define-module (gnu packages gdb)
#:use-module (gnu packages)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages hurd)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages readline)
@@ -57,6 +58,7 @@
(search-patches "gdb-hurd.patch"))))
(build-system gnu-build-system)
+ (outputs '("out" "debug"))
(arguments
`(#:tests? #f ; FIXME "make check" fails on single-processor systems.
@@ -66,6 +68,14 @@
,@%gnu-build-system-modules)
#:phases (modify-phases %standard-phases
+ (add-after 'unpack 'patch-paths
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let ((sh (string-append (assoc-ref inputs "bash")
+ "/bin/sh")))
+ (substitute* '("gdb/ser-pipe.c"
+ "gdbsupport/pathstuff.cc")
+ (("\"/bin/sh\"")
+ (format #f "~s" sh))))))
(add-after
'configure 'post-configure
(lambda _
@@ -95,7 +105,8 @@
(for-each delete-file common)
#t)))))))
(inputs
- `(("expat" ,expat)
+ `(("bash" ,bash)
+ ("expat" ,expat)
("mpfr" ,mpfr)
("gmp" ,gmp)
("readline" ,readline)
- 92/169: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., (continued)
- 92/169: gnu: rust: Add rust 1.54 and move all non-bootstrapping logic to it., guix-commits, 2021/10/28
- 30/169: gnu: farstream: Enable tests., guix-commits, 2021/10/28
- 45/169: gnu: gst-plugins-ugly: Update to 1.19.2., guix-commits, 2021/10/28
- 41/169: gnu: gst-plugins-base: Update to 1.19.2., guix-commits, 2021/10/28
- 43/169: gnu: zxing-cpp: Update to 1.2.0., guix-commits, 2021/10/28
- 48/169: gnu: python-gst: Update to 1.19.2., guix-commits, 2021/10/28
- 64/169: gnu: gst-plugins-ugly: Update to 1.18.5., guix-commits, 2021/10/28
- 63/169: gnu: gst-plugins-bad: Update to 1.18.5., guix-commits, 2021/10/28
- 67/169: gnu: python-gst: Update to 1.18.5., guix-commits, 2021/10/28
- 68/169: gnu: gstreamer-docs: Update to 1.18.5., guix-commits, 2021/10/28
- 86/169: gnu: gdb: Patch references to /bin/sh and add debug output.,
guix-commits <=
- 90/169: gnu: glade3: Remove sitecustomize.py workaround., guix-commits, 2021/10/28
- 88/169: guix: packages: Fix repacking of plain tarballs., guix-commits, 2021/10/28
- 95/169: gnu: Move a few Python packages to (gnu packages python-build)., guix-commits, 2021/10/28
- 100/169: gnu: python-pytest-6: Fix version via setuptools-scm., guix-commits, 2021/10/28
- 104/169: build: glib-or-gtk-build-system: Fix indentation., guix-commits, 2021/10/28
- 106/169: gnu: at-spi2-atk: Break a dependency cycle between GTK+ and Inkscape., guix-commits, 2021/10/28
- 93/169: gnu: Build all Rust packages using the latest rustc., guix-commits, 2021/10/28
- 101/169: gnu: python-pathlib2: Update to 2.3.6., guix-commits, 2021/10/28
- 109/169: gnu: json-glib-minimal: Introduce minimal variant., guix-commits, 2021/10/28
- 118/169: gnu: cmake-bootstrap: Update to 3.21.3., guix-commits, 2021/10/28