gnu: commencement: '%bootstrap-inputs+toolchain' no longer contains Mes.
* gnu/packages/commencement.scm (%bootstrap-inputs+toolchain): On i686-linux and x86_64-linux, remove "bootstrap-mescc-tools" and "mes" from %BOOTSTRAP-INPUTS.
This commit is contained in:
parent
2c35ae8219
commit
1380be3c73
|
@ -1388,15 +1388,16 @@ exec " gcc "/bin/" program
|
||||||
(define (%bootstrap-inputs+toolchain)
|
(define (%bootstrap-inputs+toolchain)
|
||||||
;; The traditional bootstrap-inputs. For the i686-linux Reduced Binary Seed
|
;; The traditional bootstrap-inputs. For the i686-linux Reduced Binary Seed
|
||||||
;; the actual reduced set with bootstrapped toolchain.
|
;; the actual reduced set with bootstrapped toolchain.
|
||||||
(append (match (%current-system)
|
(match (%current-system)
|
||||||
((or "i686-linux" "x86_64-linux")
|
((or "i686-linux" "x86_64-linux")
|
||||||
`(("libc" ,glibc-mesboot)
|
`(("libc" ,glibc-mesboot)
|
||||||
("binutils" ,binutils-mesboot)
|
("binutils" ,binutils-mesboot)
|
||||||
("gcc-wrapper" ,gcc-mesboot-wrapper)
|
("gcc-wrapper" ,gcc-mesboot-wrapper)
|
||||||
("gcc" ,gcc-mesboot)))
|
("gcc" ,gcc-mesboot)
|
||||||
(_
|
,@(fold alist-delete (%bootstrap-inputs)
|
||||||
'()))
|
'("bootstrap-mescc-tools" "mes"))))
|
||||||
(%bootstrap-inputs)))
|
(_
|
||||||
|
(%bootstrap-inputs))))
|
||||||
|
|
||||||
(define gnu-make-boot0
|
(define gnu-make-boot0
|
||||||
(package-with-bootstrap-guile
|
(package-with-bootstrap-guile
|
||||||
|
|
Loading…
Reference in New Issue