~ruther/guix-local

c71493c8b9328ff3dbddf3b9430200ef4d174917 — Ludovic Courtès 12 years ago 1959fb0
build: Check the availability of i686-linux binaries.

* build-aux/check-available-binaries.scm (%supported-systems): New
  variable.
  (native): Map over these.
1 files changed, 7 insertions(+), 2 deletions(-)

M build-aux/check-available-binaries.scm
M build-aux/check-available-binaries.scm => build-aux/check-available-binaries.scm +7 -2
@@ 28,9 28,14 @@
             (srfi srfi-1)
             (srfi srfi-26))

(define %supported-systems
  '("x86_64-linux" "i686-linux"))

(let* ((store  (open-connection))
       (native (map (cut package-derivation store <>)
                    (list %bootstrap-tarballs emacs)))
       (native (append-map (lambda (system)
                             (map (cut package-derivation store <> system)
                                  (list %bootstrap-tarballs emacs)))
                           %supported-systems))
       (cross  (map (cut package-cross-derivation store
                         %bootstrap-tarballs <>)
                    '("mips64el-linux-gnuabi64")))