gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash.
* gnu/packages/bootstrap.scm (%bootstrap-inputs)[i686-linux,x86-linux]: Remove %bootstrap-coreutils&co, %bootstrap-bash.
This commit is contained in:
parent
6340afee28
commit
d77860dbc8
1 changed files with 12 additions and 13 deletions
|
@ -809,19 +809,18 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
|
||||||
(define (%bootstrap-inputs)
|
(define (%bootstrap-inputs)
|
||||||
;; The initial, pre-built inputs. From now on, we can start building our
|
;; The initial, pre-built inputs. From now on, we can start building our
|
||||||
;; own packages.
|
;; own packages.
|
||||||
`(,@(match (%current-system)
|
(match (%current-system)
|
||||||
((or "i686-linux" "x86_64-linux")
|
((or "i686-linux" "x86_64-linux")
|
||||||
`(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
|
`(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
|
||||||
("bootstrap-mescc-tools" ,%bootstrap-mescc-tools)
|
("bootstrap-mescc-tools" ,%bootstrap-mescc-tools)
|
||||||
("mes" ,%bootstrap-mes)))
|
("mes" ,%bootstrap-mes)))
|
||||||
(_
|
(_
|
||||||
`(("libc" ,%bootstrap-glibc)
|
`(("libc" ,%bootstrap-glibc)
|
||||||
("gcc" ,%bootstrap-gcc)
|
("gcc" ,%bootstrap-gcc)
|
||||||
("binutils" ,%bootstrap-binutils))))
|
("binutils" ,%bootstrap-binutils)
|
||||||
("coreutils&co" ,%bootstrap-coreutils&co)
|
("coreutils&co" ,%bootstrap-coreutils&co)
|
||||||
|
;; In gnu-build-system.scm, we rely on the availability of Bash.
|
||||||
;; In gnu-build-system.scm, we rely on the availability of Bash.
|
("bash" ,%bootstrap-coreutils&co)))))
|
||||||
("bash" ,%bootstrap-coreutils&co)))
|
|
||||||
|
|
||||||
(define %bootstrap-inputs-for-tests
|
(define %bootstrap-inputs-for-tests
|
||||||
;; These are bootstrap inputs that are cheap to produce (no compilation
|
;; These are bootstrap inputs that are cheap to produce (no compilation
|
||||||
|
|
Reference in a new issue