git: 05068774796a - main - sysutils/edk2@qemu_i386: Fix build depends
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 07 Jun 2022 06:36:21 UTC
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/ports/commit/?id=05068774796a180344fb56dd2397b7bdfbd1d38e commit 05068774796a180344fb56dd2397b7bdfbd1d38e Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2022-06-07 06:34:31 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2022-06-07 06:35:36 +0000 sysutils/edk2@qemu_i386: Fix build depends nasm is also needed for qemu_i386 Fixes: 177204e319 ("sysutils/edk2: Add qemu_x64 and qemu_i386 as new FLAVORs of edk2") Reported by: pkg-fallout Sponsored by: Beckhoff Automation GmbH & Co. KG --- sysutils/edk2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysutils/edk2/Makefile b/sysutils/edk2/Makefile index b499a09960aa..2a69e0725b6e 100644 --- a/sysutils/edk2/Makefile +++ b/sysutils/edk2/Makefile @@ -168,7 +168,7 @@ BUILD_DEPENDS+= aarch64-none-elf-gcc:devel/aarch64-none-elf-gcc MAKE_ENV+= GCC5_AARCH64_PREFIX=aarch64-none-elf- .endif -.if ${PLAT_ARCH} == X64 +.if ${PLAT_ARCH} == X64 || ${PLAT_ARCH} == IA32 BUILD_DEPENDS+= nasm:devel/nasm .endif