diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-07-22 07:59:23 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-07-30 21:36:22 +0200 |
commit | 4ed0d3c3ea7ba57600d21ca0d5a34377a0d09cfb (patch) | |
tree | b20a84eb9ea06c8c8294a85c1792016012c9dbcf /scripts | |
parent | 6f3badb67dcce2d67ac9abe35b10a04f560bbd08 (diff) | |
download | u-boot-4ed0d3c3ea7ba57600d21ca0d5a34377a0d09cfb.tar.gz |
efi_loader: always rebuild efi_crt0.o
When changing the architecture without calling 'make clean' a subsequent
make fails with
lib/efi_loader/efi_crt0.o: file not recognized: File format not recognized
Force efi_crt0.o to be always rebuild.
Reported-by: Kever Yang <kever.yang@rock-chips.com>
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index de67677f61..2f5e28cac3 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -383,7 +383,7 @@ cmd_efi_ld = $(LD) -nostdlib -znocombreloc -T $(EFI_LDS_PATH) -shared \ EFI_LDS_PATH = $(srctree)/arch/$(ARCH)/lib/$(EFI_LDS) -$(obj)/efi_crt0.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_CRT0:.o=.S) +$(obj)/efi_crt0.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_CRT0:.o=.S) FORCE $(call if_changed_dep,as_o_S) $(obj)/efi_reloc.o: $(srctree)/arch/$(ARCH)/lib/$(EFI_RELOC:.o=.c) $(recordmcount_source) FORCE |