aboutsummaryrefslogtreecommitdiff
path: root/gnu/bootloader
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2020-06-09 18:47:13 +0200
committerMathieu Othacehe <othacehe@gnu.org>2020-06-09 18:49:36 +0200
commit80352a2f6878a3a51c3e26cb768b9ae3d63a5de7 (patch)
treee489129f18eca1a6b712b5e7174915003ed7cf8d /gnu/bootloader
parent5681ce50745203c4ee3a469f1b9bb0a24c4090fb (diff)
downloadguix-80352a2f6878a3a51c3e26cb768b9ae3d63a5de7.tar
guix-80352a2f6878a3a51c3e26cb768b9ae3d63a5de7.tar.gz
bootloader: grub: Fix cross-compilation.
This is a follow-up of 536c53d347291dcc75e1073af6e6c5c614e0fff4, that do not use the native version of "font-file", breaking cross-compilation. * gnu/bootloader/grub.scm (eye-candy): Use the native version of "font-file".
Diffstat (limited to 'gnu/bootloader')
-rw-r--r--gnu/bootloader/grub.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/bootloader/grub.scm b/gnu/bootloader/grub.scm
index fa391fd6b4..b905ae360c 100644
--- a/gnu/bootloader/grub.scm
+++ b/gnu/bootloader/grub.scm
@@ -151,7 +151,7 @@ if loadfont ~a; then
insmod all_video
insmod gfxterm
fi~%"
- #$font-file
+ #+font-file
#$(string-join
(grub-theme-gfxmode (bootloader-theme config))
";"))