diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-12-14 20:21:01 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-12-16 18:05:54 +0200 |
commit | 580a7cc5a9291e5258bf0814ea58d53c1992cefb (patch) | |
tree | e2b32c5b2d3156144717e0cc12265e7e23f05511 | |
parent | d5298c5e334e56a9aabddcb62d312e63135864f6 (diff) | |
download | guix-580a7cc5a9291e5258bf0814ea58d53c1992cefb.tar.gz guix-580a7cc5a9291e5258bf0814ea58d53c1992cefb.zip |
gnu: valgrind: Use correct glibc.
* gnu/packages/valgrind.scm (valgrind/interactive)[inputs]: Replace
glibc with libc-for-target.
Change-Id: If8e428a12647c8aeb36fa90f36d7c8d12055f2b9
-rw-r--r-- | gnu/packages/valgrind.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/valgrind.scm b/gnu/packages/valgrind.scm index ee39bb2fb0..0811ac05cc 100644 --- a/gnu/packages/valgrind.scm +++ b/gnu/packages/valgrind.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013, 2014, 2022 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2016, 2020, 2022 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2020, 2022, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2020 Marius Bakke <marius@gnu.org> ;;; Copyright © 2022 Denis Carikli <GNUtoo@cyberdimension.org> @@ -96,5 +96,5 @@ also use Valgrind to build new tools.") valgrind (inputs ;; GDB is needed to provide a sane default for `--db-command'. - (list gdb `(,(canonical-package glibc) "debug"))) + (list gdb `(,(canonical-package (libc-for-target)) "debug"))) (properties '()))) |