summaryrefslogtreecommitdiff
path: root/gnu/packages/bootstrap.scm
diff options
context:
space:
mode:
authorJan Nieuwenhuizen <janneke@gnu.org>2019-11-22 23:05:15 +0100
committerJan Nieuwenhuizen <janneke@gnu.org>2020-02-17 23:21:03 +0100
commitd77860dbc8fc9fc494fec68da2b81fecd59db8a1 (patch)
treea1b0891562392c1ec87b6ec3e6ad24c15103749c /gnu/packages/bootstrap.scm
parent6340afee2852c5b81f6a34678c71d42fa17b4a7c (diff)
gnu: bootstrap: Remove %bootstrap-coreutils&co, %bootstrap-bash.
* gnu/packages/bootstrap.scm (%bootstrap-inputs)[i686-linux,x86-linux]: Remove %bootstrap-coreutils&co, %bootstrap-bash.
Diffstat (limited to 'gnu/packages/bootstrap.scm')
-rw-r--r--gnu/packages/bootstrap.scm25
1 files changed, 12 insertions, 13 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index c097d936936..0fbe8ef64af 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -809,19 +809,18 @@ exec ~a/bin/.gcc-wrapped -B~a/lib \
809(define (%bootstrap-inputs) 809(define (%bootstrap-inputs)
810 ;; The initial, pre-built inputs. From now on, we can start building our 810 ;; The initial, pre-built inputs. From now on, we can start building our
811 ;; own packages. 811 ;; own packages.
812 `(,@(match (%current-system) 812 (match (%current-system)
813 ((or "i686-linux" "x86_64-linux") 813 ((or "i686-linux" "x86_64-linux")
814 `(("linux-libre-headers" ,%bootstrap-linux-libre-headers) 814 `(("linux-libre-headers" ,%bootstrap-linux-libre-headers)
815 ("bootstrap-mescc-tools" ,%bootstrap-mescc-tools) 815 ("bootstrap-mescc-tools" ,%bootstrap-mescc-tools)
816 ("mes" ,%bootstrap-mes))) 816 ("mes" ,%bootstrap-mes)))
817 (_ 817 (_
818 `(("libc" ,%bootstrap-glibc) 818 `(("libc" ,%bootstrap-glibc)
819 ("gcc" ,%bootstrap-gcc) 819 ("gcc" ,%bootstrap-gcc)
820 ("binutils" ,%bootstrap-binutils)))) 820 ("binutils" ,%bootstrap-binutils)
821 ("coreutils&co" ,%bootstrap-coreutils&co) 821 ("coreutils&co" ,%bootstrap-coreutils&co)
822 822 ;; In gnu-build-system.scm, we rely on the availability of Bash.
823 ;; In gnu-build-system.scm, we rely on the availability of Bash. 823 ("bash" ,%bootstrap-coreutils&co)))))
824 ("bash" ,%bootstrap-coreutils&co)))
825 824
826(define %bootstrap-inputs-for-tests 825(define %bootstrap-inputs-for-tests
827 ;; These are bootstrap inputs that are cheap to produce (no compilation 826 ;; These are bootstrap inputs that are cheap to produce (no compilation