diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-11-30 10:17:09 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-11-30 10:17:09 +0200 |
commit | 46ff2dbb4ae6f85554aaf2a16c2e6dc2edf244da (patch) | |
tree | 17a375dd0d4e722df1cfa677d7cec203e2620cf1 /gnu/packages/bootloaders.scm | |
parent | 3e9013562c90e4c3279de7d5781eade6b4c27b53 (diff) | |
download | guix-46ff2dbb4ae6f85554aaf2a16c2e6dc2edf244da.tar guix-46ff2dbb4ae6f85554aaf2a16c2e6dc2edf244da.tar.gz |
gnu: grub-efi: Disable tests on all platforms.
This is a follow-up to 56f0feb6781e3680541d7adc21d6b3b4746a33ca
and 63087721bb54a14dc04ec424474386ae98f7771b, which accidentally
enabled tests for grub-efi on other platforms.
* gnu/packages/bootloaders.scm (grub-efi)[arguments]: Override inherited
tests field and disable on all platforms.
Diffstat (limited to 'gnu/packages/bootloaders.scm')
-rw-r--r-- | gnu/packages/bootloaders.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 273aeb3823..7d42ff3ebc 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -164,8 +164,8 @@ menu to select one of the installed operating systems.") `(;; TODO: Tests need a UEFI firmware for qemu. There is one at ;; https://github.com/tianocore/edk2/tree/master/OvmfPkg . ;; Search for 'OVMF' in "tests/util/grub-shell.in". - #:tests? #f ,@(substitute-keyword-arguments (package-arguments grub) + ((#:tests? _ #f) #f) ((#:configure-flags flags ''()) `(cons "--with-platform=efi" ,flags)) ((#:phases phases) |