From 28dc564ee24b46cc881c0cf3c86b8090eda2e87e Mon Sep 17 00:00:00 2001 From: Astrako Date: Mon, 20 Apr 2020 08:45:45 +0200 Subject: [PATCH] firmware: fix firmware files deletion with make clean --- firmware/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/Makefile b/firmware/Makefile index c432c8ddcbfd..7561b309f460 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -302,8 +302,8 @@ endif # Remove .S files and binaries created from ihex # (during 'make clean' .config isn't included so they're all in $(fw-shipped-)) -targets := $(fw-shipped-) $(patsubst $(obj)/%,%, \ - $(shell find $(obj) -name \*.gen.S 2>/dev/null)) +# targets := $(fw-shipped-) $(patsubst $(obj)/%,%, \ +# $(shell find $(obj) -name \*.gen.S 2>/dev/null)) # Without this, built-in.o won't be created when it's empty, and the # final vmlinux link will fail.