me
/
guix
Archived
1
0
Fork 0

gnu: qemu: Honor #:configure-flags argument.

* gnu/packages/qemu.scm (qemu-headless)[arguments]: Honor #:configure-flags
  arguments for configure phase.
master
Eric Bavier 2015-08-16 06:03:53 -05:00
parent 4e0143738f
commit 20c263b00f
1 changed files with 7 additions and 4 deletions

View File

@ -74,7 +74,8 @@
(arguments
'(#:phases (alist-replace
'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
(lambda* (#:key inputs outputs (configure-flags '())
#:allow-other-keys)
;; The `configure' script doesn't understand some of the
;; GNU options. Thus, add a new phase that's compatible.
(let ((out (assoc-ref outputs "out")))
@ -87,11 +88,13 @@
;; The binaries need to be linked against -lrt.
(setenv "LDFLAGS" "-lrt")
(zero?
(system* "./configure"
(string-append "--cc=" (which "gcc"))
(apply system*
`("./configure"
,(string-append "--cc=" (which "gcc"))
"--disable-debug-info" ; save build space
"--enable-virtfs" ; just to be sure
(string-append "--prefix=" out)))))
,(string-append "--prefix=" out)
,@configure-flags)))))
(alist-cons-after
'install 'install-info
(lambda* (#:key inputs outputs #:allow-other-keys)