diff options
| author | Mathieu Othacehe <othacehe@gnu.org> | 2020-06-09 18:47:13 +0200 |
|---|---|---|
| committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-06-09 18:49:36 +0200 |
| commit | 80352a2f6878a3a51c3e26cb768b9ae3d63a5de7 (patch) | |
| tree | e489129f18eca1a6b712b5e7174915003ed7cf8d /gnu/bootloader | |
| parent | 5681ce50745203c4ee3a469f1b9bb0a24c4090fb (diff) | |
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.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/bootloader/grub.scm b/gnu/bootloader/grub.scm index fa391fd6b44..b905ae360c0 100644 --- a/gnu/bootloader/grub.scm +++ b/gnu/bootloader/grub.scm | |||
| @@ -151,7 +151,7 @@ if loadfont ~a; then | |||
| 151 | insmod all_video | 151 | insmod all_video |
| 152 | insmod gfxterm | 152 | insmod gfxterm |
| 153 | fi~%" | 153 | fi~%" |
| 154 | #$font-file | 154 | #+font-file |
| 155 | #$(string-join | 155 | #$(string-join |
| 156 | (grub-theme-gfxmode (bootloader-theme config)) | 156 | (grub-theme-gfxmode (bootloader-theme config)) |
| 157 | ";")) | 157 | ";")) |
