[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/04: gnu: commencement: %boot0-inputs: Soft-code Scheme-only additions
From: |
guix-commits |
Subject: |
01/04: gnu: commencement: %boot0-inputs: Soft-code Scheme-only additions. |
Date: |
Wed, 19 Feb 2020 14:05:51 -0500 (EST) |
janneke pushed a commit to branch core-updates
in repository guix.
commit 0a3e8536d983722b464d0b939249d63c409feadb
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Wed Feb 19 15:33:44 2020 +0100
gnu: commencement: %boot0-inputs: Soft-code Scheme-only additions.
* gnu/packages/commencement.scm (%boot0-inputs)[x86-linux,x86_64-linux]:
Include
*-boot0 additions for Scheme-only bootstrap.
---
gnu/packages/commencement.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 0d7611b..511fdd1 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2669,16 +2669,19 @@ exec " gcc "/bin/" program
,@(package-arguments tar)))))
(define (%boot0-inputs)
- `(("bzip2" ,bzip2-boot0)
- ("coreutils" ,coreutils-boot0)
+ `(,@(match (%current-system)
+ ((or "i686-linux" "x86_64-linux")
+ `(("bzip2" ,bzip2-boot0)
+ ("coreutils" ,coreutils-boot0)
+ ("gawk" ,gawk-boot0)
+ ("patch" ,patch-boot0)
+ ("sed" ,sed-boot0)
+ ("tar" ,tar-boot0)))
+ (_ '()))
+ ("make" ,gnu-make-boot0)
("diffutils" ,diffutils-boot0)
("findutils" ,findutils-boot0)
("file" ,file-boot0)
- ("gawk" ,gawk-boot0)
- ("make" ,gnu-make-boot0)
- ("patch" ,patch-boot0)
- ("sed" ,sed-boot0)
- ("tar" ,tar-boot0)
,@(%bootstrap-inputs+toolchain)))
(define* (boot-triplet #:optional (system (%current-system)))