diff options
Diffstat (limited to 'mk/efi.mk')
-rw-r--r-- | mk/efi.mk | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -21,7 +21,11 @@ ifeq ($(ARCH),x86_64) EFI_SUBARCH = $(ARCH) endif -$(shell $(topdir)/efi/check-gnu-efi.sh $(EFI_SUBARCH) $(topdir) $(objdir)) +output = $(shell $(topdir)/efi/check-gnu-efi.sh $(EFI_SUBARCH) \ + $(topdir) $(objdir)) +ifneq ($(output),) +$(error Failed to build gnu-efi for $(EFI_SUBARCH)) +endif #LIBDIR=/usr/lib FORMAT=efi-app-$(EFI_SUBARCH) |