summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-04-27 18:32:52 +0300
committerMasahiro Yamada <masahiroy@kernel.org>2024-05-09 22:34:52 +0300
commit770202a2233f819bfc33844d860e7282e696a91c (patch)
treeeef7ab10b01f0caa7d47f3e284e9624c410e64d5 /Makefile
parentb1992c3772e69a6fd0e3fc81cd4d2820c8b6eca0 (diff)
downloadlinux-770202a2233f819bfc33844d860e7282e696a91c.tar.xz
kbuild: remove redundant $(wildcard ) for rm-files
The $(wildcard ) is called in quiet_cmd_rmfiles. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Nicolas Schier <n.schier@avm.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c97c8d96061c..b73519492887 100644
--- a/Makefile
+++ b/Makefile
@@ -1515,7 +1515,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