[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: bootstrap-mes-rewired: Do not import the host's (srfi srfi-2
From: |
guix-commits |
Subject: |
01/02: gnu: bootstrap-mes-rewired: Do not import the host's (srfi srfi-26). |
Date: |
Tue, 18 Feb 2020 05:18:55 -0500 (EST) |
civodul pushed a commit to branch core-updates
in repository guix.
commit 68bbd213e83ae4167096b0760ef756b941d19a85
Author: Ludovic Courtès <address@hidden>
AuthorDate: Tue Feb 18 11:17:18 2020 +0100
gnu: bootstrap-mes-rewired: Do not import the host's (srfi srfi-26).
* gnu/packages/commencement.scm (%bootstrap-mes-rewired): Remove (srfi
srfi-26) from #:modules.
---
gnu/packages/commencement.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 9827b77..e2dde1b 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -262,11 +262,12 @@ pure Scheme to Tar and decompression in one easy step.")
(build-system trivial-build-system)
(arguments
`(#:guile ,%bootstrap-guile
- #:modules ((guix build utils)
- (srfi srfi-26))
+ #:modules ((guix build utils))
+
#:builder (begin
(use-modules (guix build utils)
(srfi srfi-26))
+
(let* ((mes (assoc-ref %build-inputs "mes"))
(gash (assoc-ref %build-inputs "gash"))
(mes-bin (string-append mes "/bin"))