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/grub.scm | |
parent | 6779b9322253ba232d5d07e337d2d0933ecfdf2f (diff) | |
download | patches-83723949a4e5f90176f8863dd08fd9c7f36bce75.tar patches-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/grub.scm')
-rw-r--r-- | gnu/packages/grub.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/grub.scm b/gnu/packages/grub.scm index 3229b868c5..302fd0e1ae 100644 --- a/gnu/packages/grub.scm +++ b/gnu/packages/grub.scm @@ -22,6 +22,7 @@ (define-module (gnu packages grub) #:use-module (guix download) #:use-module (guix packages) + #:use-module (guix utils) #:use-module ((guix licenses) #:select (gpl3+)) #:use-module (guix build-system gnu) #:use-module (gnu packages) @@ -58,7 +59,12 @@ ;; ERROR:tests/rtc-test.c:176:check_time: assertion failed (ABS(t - s) <= wiggle): (382597824 <= 2) ;; Simply disable the tests. (arguments `(#:tests? #f - ,@(package-arguments qemu-minimal))) + ,@(substitute-keyword-arguments (package-arguments qemu-minimal) + ((#:phases phases) + ;; We disable the tests so we also skip the phase disabling + ;; the qga test, which fails due to changes in QEMU + `(modify-phases ,phases + (delete 'disable-test-qga)))))) ;; The manual fails to build with Texinfo 5.x. (native-inputs (alist-delete "texinfo" (package-native-inputs qemu))))) |