diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-09 11:41:33 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:19 +0200 |
commit | bcc7655998332281c00bd1b579078c139850a1c6 (patch) | |
tree | c2ec4d169480c6b983d16fa146a3e41d12577178 /gnu/packages/gdb.scm | |
parent | 44407d60eb8f75450aa5c8336337697ba7de9a50 (diff) | |
download | guix-bcc7655998332281c00bd1b579078c139850a1c6.tar guix-bcc7655998332281c00bd1b579078c139850a1c6.tar.gz |
gnu: gdb: Import the correct set of modules.
* gnu/packages/gdb.scm (gdb) [arguments]
<modules>: Replace %default-gnu-imported-modules with %default-gnu-modules.
Change-Id: I0bf897af81c09ab7d00c1d06fb527633ed4c9bd8
Diffstat (limited to 'gnu/packages/gdb.scm')
-rw-r--r-- | gnu/packages/gdb.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 15e6a88726..8fc2ec14a1 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -64,7 +64,7 @@ `(#:tests? #f ;FIXME: 217 unexpected failures #:out-of-source? #t #:modules ((srfi srfi-1) - ,@%default-gnu-imported-modules) + ,@%default-gnu-modules) #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-paths (lambda* (#:key inputs #:allow-other-keys) |