public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] kbuild: remove redundant $(wildcard ) for rm-files
@ 2024-04-27 15:32 Masahiro Yamada
  2024-04-27 15:32 ` [PATCH 2/2] kbuild: add 'private' to target-specific variables Masahiro Yamada
  2024-05-07  9:43 ` [PATCH 1/2] kbuild: remove redundant $(wildcard ) for rm-files Nicolas Schier
  0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2024-04-27 15:32 UTC (permalink / raw)
  To: linux-kbuild
  Cc: linux-kernel, Masahiro Yamada, Nathan Chancellor, Nicolas Schier

The $(wildcard ) is called in quiet_cmd_rmfiles.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---

 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index a1c19979e13e..62557fabfee5 100644
--- a/Makefile
+++ b/Makefile
@@ -1512,7 +1512,7 @@ clean: archclean vmlinuxclean resolve_btfids_clean
 
 # mrproper - Delete all generated files, including .config
 #
-mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
+mrproper: rm-files := $(MRPROPER_FILES)
 mrproper-dirs      := $(addprefix _mrproper_,scripts)
 
 PHONY += $(mrproper-dirs) mrproper
-- 
2.40.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-05-07 14:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-27 15:32 [PATCH 1/2] kbuild: remove redundant $(wildcard ) for rm-files Masahiro Yamada
2024-04-27 15:32 ` [PATCH 2/2] kbuild: add 'private' to target-specific variables Masahiro Yamada
2024-05-07 11:15   ` Nicolas Schier
2024-05-07 14:25     ` Masahiro Yamada
2024-05-07  9:43 ` [PATCH 1/2] kbuild: remove redundant $(wildcard ) for rm-files Nicolas Schier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox