diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-04-27 17:32:52 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-05-09 21:34:52 +0200 |
commit | 770202a2233f819bfc33844d860e7282e696a91c (patch) | |
tree | eef7ab10b01f0caa7d47f3e284e9624c410e64d5 /Makefile | |
parent | kbuild: use $(src) instead of $(srctree)/$(src) for source directory (diff) | |
download | linux-770202a2233f819bfc33844d860e7282e696a91c.tar.xz 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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |