[U-Boot] [PATCH 1/1] Makefile: clean should delete *.efi

17 May
2018
17 May
'18
6:57 p.m.
Files *.efi are generated files. So the clean target should delete them.
Signed-off-by: Heinrich Schuchardt xypron.glpk@gmx.de --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile index 714ac9e1183..96c53250484 100644 --- a/Makefile +++ b/Makefile @@ -1611,7 +1611,8 @@ clean: $(clean-dirs) -o -name '*.symtypes' -o -name 'modules.order' \ -o -name modules.builtin -o -name '.tmp_*.o.*' \ -o -name 'dsdt.aml' -o -name 'dsdt.asl.tmp' -o -name 'dsdt.c' \ - -o -name '*.gcno' ) -type f -print | xargs rm -f + -o -name '*.efi' -o -name '*.gcno' ) \ + -type f -print | xargs rm -f
# mrproper - Delete all generated files, including .config #
--
2.14.2
2551
Age (days ago)
2551
Last active (days ago)
0 comments
1 participants
participants (1)
-
Heinrich Schuchardt