summaryrefslogtreecommitdiff
path: root/build-aux/hydra/gnu-system.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2017-01-05 00:00:59 +0100
committerLudovic Courtès <ludo@gnu.org>2017-01-05 00:00:59 +0100
commit9410a5aa916035bb4d7f032a5fe81cfb497887c8 (patch)
tree1b7d06d8045c4f97cc7e1e5a6402abb15f1ed097 /build-aux/hydra/gnu-system.scm
parent4a6f099e2c6dc3115abe708ea500d9e96e2ec0dc (diff)
downloadpatches-9410a5aa916035bb4d7f032a5fe81cfb497887c8.tar
patches-9410a5aa916035bb4d7f032a5fe81cfb497887c8.tar.gz
hydra: Add "powerpc-linux-gnu" as a cross-compilation target.
* build-aux/hydra/gnu-system.scm (%cross-targets): Add "powerpc-linux-gnu".
Diffstat (limited to 'build-aux/hydra/gnu-system.scm')
-rw-r--r--build-aux/hydra/gnu-system.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 26c7b3ca45..10e0f89c4c 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -123,7 +123,8 @@ SYSTEM."
(define %cross-targets
'("mips64el-linux-gnu"
"mips64el-linux-gnuabi64"
- "arm-linux-gnueabihf"))
+ "arm-linux-gnueabihf"
+ "powerpc-linux-gnu"))
(define (demo-os)
"Return the \"demo\" 'operating-system' structure."