fix libgrub.pp build post arm64 merge

grub-core/kern/arm64/dl_helper.c:26:28: fatal error: grub/cpu/reloc.h: No such file or directory
This commit is contained in:
Andrey Borzenkov 2013-11-30 22:36:10 +04:00
parent 8a952d20d1
commit 5037aa9a7b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-11-30 Andrey Borzenkov <arvidjaar@gmail.com>
* grub-core/kern/arm64/dl_helper.c: Include grub/arm64/reloc.h
directly, not via `cpu' link, to fix libgrub.pp generation.
2013-11-30 Leif Lindholm <leif.lindholm@linaro.org>
New port arm64-efi.

View file

@ -23,7 +23,7 @@
#include <grub/err.h>
#include <grub/mm.h>
#include <grub/i18n.h>
#include <grub/cpu/reloc.h>
#include <grub/arm64/reloc.h>
static grub_ssize_t
sign_compress_offset (grub_ssize_t offset, int bitpos)