diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.18-r5.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0.18-r5.ebuild index d3d5d12d57b7d..d42c0ae837f4f 100644 --- a/sys-boot/gnu-efi/gnu-efi-3.0.18-r5.ebuild +++ b/sys-boot/gnu-efi/gnu-efi-3.0.18-r5.ebuild @@ -61,18 +61,18 @@ check_and_set_objcopy() { fi } -check_comppiler() { +check_compiler() { if [[ ${MERGE_TYPE} != "binary" ]]; then tc-is-gcc || tc-is-clang || die "Unsupported compiler" fi } pkg_pretend() { - check_comppiler - check_and_set_objcopy + check_compiler } pkg_setup() { + check_compiler check_and_set_objcopy }