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:
parent
a2efd284c8
commit
583af994d0
|
@ -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}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue