diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2019-11-22 22:39:14 +0100 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2020-02-17 23:16:45 +0100 |
commit | f29fdd4e00cc41b13a1d5e5033d7525e4dbf8d04 (patch) | |
tree | 36a2e0fd72b40ae46cd9c48c33a35b3689af3039 | |
parent | 47fb2466b810afbd5d2d741f26a7e1bca8838b49 (diff) | |
download | guix-f29fdd4e00cc41b13a1d5e5033d7525e4dbf8d04.tar guix-f29fdd4e00cc41b13a1d5e5033d7525e4dbf8d04.tar.gz |
gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co.
* gnu/packages/commencement.scm (%bootstrap-inputs+toolchain): Use Gash
instead of coreutils&co.
-rw-r--r-- | gnu/packages/commencement.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 6149b848a0..2c0ddfce78 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -2636,16 +2636,11 @@ exec " gcc "/bin/" program '("coreutils" "kernel-headers")))) (define (%bootstrap-inputs+toolchain) - ;; The traditional bootstrap-inputs. For the i686-linux Reduced Binary Seed - ;; the actual reduced set with bootstrapped toolchain. + ;; The traditional bootstrap-inputs. For the i686-linux, x86_64-linux + ;; Scheme-only bootstrap the actual reduced set with bootstrapped toolchain. (match (%current-system) ((or "i686-linux" "x86_64-linux") - `(("libc" ,glibc-mesboot) - ("binutils" ,binutils-mesboot) - ("gcc-wrapper" ,gcc-mesboot-wrapper) - ("gcc" ,gcc-mesboot) - ,@(fold alist-delete (%bootstrap-inputs) - '("bootstrap-mescc-tools" "mes")))) + (%boot-mesboot6-inputs)) (_ (%bootstrap-inputs)))) |