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 <m.bachmann@acontis.com>
This commit is contained in:
Maximilian Bachmann 2020-10-20 16:33:44 +02:00 committed by Kumar Gala
parent a2efd284c8
commit 583af994d0

View file

@ -34,7 +34,7 @@ build() {
./bootstrap ./bootstrap
./autogen.sh ./autogen.sh
./configure --with-platform=efi --target=${TARGET_ARCH} ./configure --with-platform=efi --target=${TARGET_ARCH} --disable-werror
make -j${JOBS} make -j${JOBS}