~ruther/guix-local

5bd6270211b8b4d9335960eb5741c34308187ccd — Efraim Flashner 9 years ago 236d522
gnu: orpheus: Fix build on mips64el.

* gnu/packages/orpheus.scm (orpheus)[arguments]: On mips64el, pass
"--host=mips64el-unknown-linux-gnu" to ./configure.
1 files changed, 7 insertions(+), 1 deletions(-)

M gnu/packages/orpheus.scm
M gnu/packages/orpheus.scm => gnu/packages/orpheus.scm +7 -1
@@ 1,5 1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2014 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 62,7 63,12 @@
            (setenv "SHELL" (which "bash"))
            (setenv "LIBS" "-logg")     ;doesn't declare its use of libogg
            (zero?
             (system* "./configure" (string-append "--prefix=" out)))))
             (system* "./configure" (string-append "--prefix=" out)
                                    ,@(if (string=? "mips64el-linux"
                                                    (%current-system))
                                          '("--host=mips64el-unknown-linux-gnu")
                                          '())
                      ))))
        (alist-cons-after
         'configure 'configure-players
         (lambda* (#:key inputs #:allow-other-keys)