[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/09: gnu: bootstrap-tarballs: Don't include the native Mes when cross-
From: |
guix-commits |
Subject: |
04/09: gnu: bootstrap-tarballs: Don't include the native Mes when cross-compiling. |
Date: |
Tue, 2 Jul 2019 12:17:41 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit f16a866f74f39e2ae6ad708669fa2c4bc209c09b
Author: Marius Bakke <address@hidden>
Date: Fri Jun 21 09:39:07 2019 +0200
gnu: bootstrap-tarballs: Don't include the native Mes when cross-compiling.
* gnu/packages/make-bootstrap.scm (%bootstrap-tarballs)[inputs]: Check
%CURRENT-TARGET-SYSTEM when deciding whether to use the reduced binary
seeds.
---
gnu/packages/make-bootstrap.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index df6b828..2163b64 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -825,7 +825,7 @@ for `sh' in $PATH, and without nscd, and with static NSS
modules."
%build-inputs)
#t)))
(inputs `(("guile-tarball" ,%guile-bootstrap-tarball)
- ,@(match (%current-system)
+ ,@(match (or (%current-target-system) (%current-system))
((or "i686-linux" "x86_64-linux")
`(("bootstrap-mescc-tools" ,%mescc-tools-bootstrap-tarball)
("bootstrap-mes" ,%mes-bootstrap-tarball)
- branch core-updates updated (8aaf42c -> 5f3f703), guix-commits, 2019/07/02
- 03/09: gnu: make-bootstrap: Adjust for GCC 7., guix-commits, 2019/07/02
- 04/09: gnu: bootstrap-tarballs: Don't include the native Mes when cross-compiling.,
guix-commits <=
- 08/09: gnu: linux-libre-headers: Update to 4.19.56., guix-commits, 2019/07/02
- 07/09: gnu: commencement: Remove outdated comment., guix-commits, 2019/07/02
- 05/09: gnu: gettext: Update to 0.20.1., guix-commits, 2019/07/02
- 06/09: gnu: libuninameslist: Update to 20190701., guix-commits, 2019/07/02
- 02/09: gnu: make-bootstrap: Restore cross-compilation workarounds., guix-commits, 2019/07/02
- 09/09: gnu: glibc: Update to 2.29., guix-commits, 2019/07/02
- 01/09: gnu: make-bootstrap: Remove obsolete header file., guix-commits, 2019/07/02