gnu: commencement: %bootstrap-inputs+toolchain: Use Gash instead of coreutils&co.

* gnu/packages/commencement.scm (%bootstrap-inputs+toolchain): Use Gash
instead of coreutils&co.
This commit is contained in:
Jan Nieuwenhuizen 2019-11-22 22:39:14 +01:00
parent 47fb2466b8
commit f29fdd4e00
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 8 deletions

View File

@ -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))))