Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+1 -1
+1 -1
Makefile
··· 1515 1515 1516 1516 # mrproper - Delete all generated files, including .config 1517 1517 # 1518 - mrproper: rm-files := $(wildcard $(MRPROPER_FILES)) 1518 + mrproper: rm-files := $(MRPROPER_FILES) 1519 1519 mrproper-dirs := $(addprefix _mrproper_,scripts) 1520 1520 1521 1521 PHONY += $(mrproper-dirs) mrproper