mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: qemu: Build verbosely.
* gnu/packages/virtualization.scm (qemu)[arguments]: Remove phase 'make-gtester-verbose' in favor of #:make-flags.
This commit is contained in:
parent
4267481a4e
commit
a1570c89fe
1 changed files with 2 additions and 4 deletions
|
@ -126,6 +126,8 @@ (define-public qemu
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/libexec/samba-wrapper")
|
"/libexec/samba-wrapper")
|
||||||
"--audio-drv-list=alsa,pa,sdl")
|
"--audio-drv-list=alsa,pa,sdl")
|
||||||
|
;; Make build and test output verbose to facilitate investigation upon failure.
|
||||||
|
#:make-flags '("V=1")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
|
@ -177,10 +179,6 @@ (define-public qemu
|
||||||
(chmod "samba-wrapper" #o755)
|
(chmod "samba-wrapper" #o755)
|
||||||
(install-file "samba-wrapper" libexec))
|
(install-file "samba-wrapper" libexec))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'check 'make-gtester-verbose
|
|
||||||
(lambda _
|
|
||||||
;; Make GTester verbose to facilitate investigation upon failure.
|
|
||||||
(setenv "V" "1") #t))
|
|
||||||
(add-before 'check 'disable-test-qga
|
(add-before 'check 'disable-test-qga
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/Makefile.include"
|
(substitute* "tests/Makefile.include"
|
||||||
|
|
Loading…
Reference in a new issue