diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-09-06 15:53:57 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-09-06 15:53:57 +0300 |
commit | 83723949a4e5f90176f8863dd08fd9c7f36bce75 (patch) | |
tree | 76fdc9814ac00759c3f5a4508fb55dd2487c8fec /gnu/packages/debug.scm | |
parent | 6779b9322253ba232d5d07e337d2d0933ecfdf2f (diff) | |
download | gnu-guix-83723949a4e5f90176f8863dd08fd9c7f36bce75.tar gnu-guix-83723949a4e5f90176f8863dd08fd9c7f36bce75.tar.gz |
gnu: Fix pre-2.7.0 qemu builds.
This is a follow-up to 43bec6d0.
* gnu/packages/debug.scm (qemu-2.3.0),
gnu/packages/grub.scm (qemu-for-tests)[arguments]: Remove the
'disable-test-qga phase.
Diffstat (limited to 'gnu/packages/debug.scm')
-rw-r--r-- | gnu/packages/debug.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 9da8885fb3..82a8090d0c 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -161,7 +161,10 @@ tools that process C/C++ code.") ;; XXX: Disable tests because of GTester's rejection of duplicate test ;; names, which wasn't addressed in this version of QEMU. `(#:tests? #f - ,@(package-arguments qemu-minimal))))) + ,@(substitute-keyword-arguments (package-arguments qemu-minimal) + ((#:phases phases) + ;; We disable the tests so we skip the phase disabling the qga test. + `(modify-phases ,phases (delete 'disable-test-qga)))))))) (define-public american-fuzzy-lop (let ((machine (match (or (%current-target-system) |