From: Heinrich Schuchardt Date: Tue, 5 Sep 2017 01:19:39 +0000 (+0200) Subject: efi_loader: usage of always in Makefile X-Git-Tag: v2017.11-rc1~4^2~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c96967e6d7cd2fefbbc8cfcf9de6b5ad2eccb4e2;p=u-boot efi_loader: usage of always in Makefile Variable always should only be appended but not overwritten by lib/efi_loader/Makefile. Remove variable efiprogs which is not otherwise used. Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/Makefile b/lib/efi_loader/Makefile index 30bf343a36..0cfdd3bfc9 100644 --- a/lib/efi_loader/Makefile +++ b/lib/efi_loader/Makefile @@ -10,8 +10,9 @@ CFLAGS_helloworld.o := $(CFLAGS_EFI) CFLAGS_REMOVE_helloworld.o := $(CFLAGS_NON_EFI) -efiprogs-$(CONFIG_CMD_BOOTEFI_HELLO_COMPILE) += helloworld.efi -always := $(efiprogs-y) +ifneq ($(CONFIG_CMD_BOOTEFI_HELLO_COMPILE),) +always += helloworld.efi +endif obj-$(CONFIG_CMD_BOOTEFI_HELLO) += helloworld_efi.o obj-y += efi_image_loader.o efi_boottime.o efi_runtime.o efi_console.o