summaryrefslogtreecommitdiff
path: root/doc/environment-gdb.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-01-25 23:36:11 -0500
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2022-01-25 23:48:37 -0500
commit0d41fe4855588fb659b8adafe215d5573517a79b (patch)
tree38b274bd03375f4fa5b7d3a9fb3f64a19786bef2 /doc/environment-gdb.scm
parent7c57821c68d199ad56a8ed750b36eccc7ef238dd (diff)
parent1a5302435ff0d2822b823f5a6fe01faa7a85c629 (diff)
Merge branch 'staging' into core-updates.
With "conflicts" resolved in (mostly in favor of master/staging): gnu/packages/admin.scm gnu/packages/gnuzilla.scm gnu/packages/gtk.scm gnu/packages/kerberos.scm gnu/packages/linux.scm guix/lint.scm
Diffstat (limited to 'doc/environment-gdb.scm')
-rw-r--r--doc/environment-gdb.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/environment-gdb.scm b/doc/environment-gdb.scm
index 040a8637f8..0534e594de 100644
--- a/doc/environment-gdb.scm
+++ b/doc/environment-gdb.scm
@@ -6,8 +6,7 @@
;; Augment the package definition of GDB with the build tools
;; needed when developing GDB (and which are not needed when
;; simply installing it.)
-(package (inherit gdb)
- (native-inputs `(("autoconf" ,autoconf-2.64)
- ("automake" ,automake)
- ("texinfo" ,texinfo)
- ,@(package-native-inputs gdb))))
+(package
+ (inherit gdb)
+ (native-inputs (modify-inputs (package-native-inputs gdb)
+ (prepend autoconf-2.64 automake texinfo))))