This is a note to let you know that I've just added the patch titled tools: hv: rm .*.cmd when make clean to the 6.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: tools-hv-rm-.-.cmd-when-make-clean.patch and it can be found in the queue-6.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 576c11e78f5ad1daf3b937d8279f7f6ded5e1899 Author: zhang jiao <zhangjiao2@xxxxxxxxxxxxxxxxxxxx> Date: Mon Sep 2 12:21:03 2024 +0800 tools: hv: rm .*.cmd when make clean [ Upstream commit 5e5cc1eb65256e6017e3deec04f9806f2f317853 ] rm .*.cmd when make clean Signed-off-by: zhang jiao <zhangjiao2@xxxxxxxxxxxxxxxxxxxx> Reviewed-by: Saurabh Sengar <ssengar@xxxxxxxxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20240902042103.5867-1-zhangjiao2@xxxxxxxxxxxxxxxxxxxx Signed-off-by: Wei Liu <wei.liu@xxxxxxxxxx> Message-ID: <20240902042103.5867-1-zhangjiao2@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/tools/hv/Makefile b/tools/hv/Makefile index 2e60e2c212cd9..34ffcec264ab0 100644 --- a/tools/hv/Makefile +++ b/tools/hv/Makefile @@ -52,7 +52,7 @@ $(OUTPUT)hv_fcopy_uio_daemon: $(HV_FCOPY_UIO_DAEMON_IN) clean: rm -f $(ALL_PROGRAMS) - find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete + find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete -o -name '\.*.cmd' -delete install: $(ALL_PROGRAMS) install -d -m 755 $(DESTDIR)$(sbindir); \