diff options
author | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2025-02-06 16:37:39 +0000 |
---|---|---|
committer | Lorenzo Salvadore <salvadore@FreeBSD.org> | 2025-02-06 17:07:07 +0000 |
commit | 9bc25ee236c4abd6b2cca81b2c845a9380f0008e (patch) | |
tree | fce84ffcda3a38d23b98e0fb8ecded360c9cd6d9 | |
parent | f26a98603c912441fe7ff6e653600ed76aebca09 (diff) |
sysutils/grub2-efi: Fix build with GCC 14
GCC 14 turns some warnings into errors. Switch them back to warnings.
PR: 284483
-rw-r--r-- | sysutils/grub2-efi/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysutils/grub2-efi/Makefile b/sysutils/grub2-efi/Makefile index 4c184e08558f..6adabb040567 100644 --- a/sysutils/grub2-efi/Makefile +++ b/sysutils/grub2-efi/Makefile @@ -32,6 +32,7 @@ CPE_VENDOR= gnu CONFIGURE_ARGS= --with-platform=efi --disable-werror --localedir=${PREFIX}/share/locale CONFIGURE_ENV= CPP="${CC} -E" \ LEX=${LOCALBASE}/bin/flex +CFLAGS+= -fpermissive .include <bsd.port.pre.mk> |