diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-03-25 13:57:51 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-03-25 13:57:51 +0100 |
commit | d452b595f96fa0a50e834f42eebadcaf0f7e786d (patch) | |
tree | 422c3912c2c3784cd83ea6a94aaf1b7a2ce5b704 /build-aux/hydra | |
parent | e795890212c3c1debe94f7c6921ee572089fd067 (diff) | |
download | guix-d452b595f96fa0a50e834f42eebadcaf0f7e786d.tar guix-d452b595f96fa0a50e834f42eebadcaf0f7e786d.tar.gz |
hydra: Fix typo in core package list.
* build-aux/hydra/gnu-system.scm: Use (gnu packages gcc).
(%core-packages): Remove nonexistent 'gcc'; add GCC-4.8 and GCC-4.7.
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index 4573e60d3b..4651935831 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -41,6 +41,7 @@ (guix derivations) ((guix utils) #:select (%current-system)) (gnu packages) + (gnu packages gcc) (gnu packages base) (gnu packages gawk) (gnu packages guile) @@ -90,7 +91,7 @@ SYSTEM." ;; 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 + (list gcc-4.8 gcc-4.7 glibc binutils gmp mpfr mpc coreutils findutils diffutils patch sed grep gawk gnu-gettext hello guile-2.0 zlib gzip xz %bootstrap-binaries-tarball |