Skip to content

Commit 770202a

Browse files
committed
kbuild: remove redundant $(wildcard ) for rm-files
The $(wildcard ) is called in quiet_cmd_rmfiles. Signed-off-by: Masahiro Yamada <[email protected]> Reviewed-by: Nicolas Schier <[email protected]>
1 parent b1992c3 commit 770202a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ clean: archclean vmlinuxclean resolve_btfids_clean
15151515

15161516
# mrproper - Delete all generated files, including .config
15171517
#
1518-
mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
1518+
mrproper: rm-files := $(MRPROPER_FILES)
15191519
mrproper-dirs := $(addprefix _mrproper_,scripts)
15201520

15211521
PHONY += $(mrproper-dirs) mrproper

0 commit comments

Comments
 (0)