From 583af994d02e55e449a8de670b0616a910b336e9 Mon Sep 17 00:00:00 2001 From: Maximilian Bachmann Date: Tue, 20 Oct 2020 16:33:44 +0200 Subject: [PATCH] boards: x86: disable werror for grub build There is a warning because of some pointer arithmetics in Grub, that makes the build fail. The build works after disabling -Werror. Signed-off-by: Maximilian Bachmann --- boards/x86/common/scripts/build_grub.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/x86/common/scripts/build_grub.sh b/boards/x86/common/scripts/build_grub.sh index 4f0c670fed..bfb42ce093 100755 --- a/boards/x86/common/scripts/build_grub.sh +++ b/boards/x86/common/scripts/build_grub.sh @@ -34,7 +34,7 @@ build() { ./bootstrap ./autogen.sh - ./configure --with-platform=efi --target=${TARGET_ARCH} + ./configure --with-platform=efi --target=${TARGET_ARCH} --disable-werror make -j${JOBS}