aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Masahiro Yamada <masahiroy@kernel.org> 2024-04-28 00:32:52 +0900
committerGravatar Masahiro Yamada <masahiroy@kernel.org> 2024-05-10 04:34:52 +0900
commit770202a2233f819bfc33844d860e7282e696a91c (patch)
treeeef7ab10b01f0caa7d47f3e284e9624c410e64d5 /Makefile
parentkbuild: use $(src) instead of $(srctree)/$(src) for source directory (diff)
downloadlinux-770202a2233f819bfc33844d860e7282e696a91c.tar.gz
linux-770202a2233f819bfc33844d860e7282e696a91c.tar.bz2
linux-770202a2233f819bfc33844d860e7282e696a91c.zip
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