diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-03-25 13:40:27 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-03-25 13:40:27 +0100 |
commit | 707c8b2ca7a597341610b3fddb6df4a30f77b6bb (patch) | |
tree | 83742e1e9565f0e96d970a17872e051c0a5724a6 /build-aux | |
parent | 2ed6aa9e398b99296144dca364012f41764a8e89 (diff) | |
download | guix-707c8b2ca7a597341610b3fddb6df4a30f77b6bb.tar guix-707c8b2ca7a597341610b3fddb6df4a30f77b6bb.tar.gz |
hydra: Build GCC and glibc, not their '-final' variant.
* build-aux/hydra/gnu-system.scm (%core-packages): Replace GCC-FINAL and
GLIBC-FINAL with GCC and GLIBC.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 4f6eaf78f2..6e61739d94 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -87,7 +87,10 @@ SYSTEM." (cut package-cross-derivation <> <> target <>)))) (define %core-packages - (list gcc-final glibc-final binutils + ;; Note: Don't put the '-final' package variants because (1) that's + ;; implicit, and (2) they cannot be cross-built (due to the explicit input + ;; chain.) + (list gcc glibc binutils gmp mpfr mpc coreutils findutils diffutils patch sed grep gawk gnu-gettext hello guile-2.0 zlib gzip xz %bootstrap-binaries-tarball |