gnu: aalib: Fix build on mips64el.

* gnu/packages/video.scm (aalib)[arguments]: On MIPS, pass
"--host=mips64el-unknown-linux-gnu" to ./configure.
master
Mark H Weaver 2016-08-17 13:55:05 -04:00
parent 6a9a336265
commit c437922a0d
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 7 additions and 1 deletions

View File

@ -104,7 +104,7 @@
(inputs
`(("ncurses" ,ncurses)))
(arguments
'(#:phases
`(#:phases
(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key build inputs outputs #:allow-other-keys)
@ -116,6 +116,12 @@
(zero? (system* "./configure"
(string-append "--prefix=" out)
(string-append "--build=" build)
;; The ancient config.guess is unable to
;; guess the host triplet on mips64el.
,@(if (string=? "mips64el-linux"
(%current-system))
'("--host=mips64el-unknown-linux-gnu")
'())
(string-append "--with-ncurses="
ncurses)))))))))
(home-page "http://aa-project.sourceforge.net/aalib/")