diff options
| author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-14 17:29:29 +0900 | 
|---|---|---|
| committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-01-16 23:31:17 +0900 | 
| commit | b421b8a6cb87f099466fff00d1870c2db778c617 (patch) | |
| tree | 28e1dfa456dd73e3f9e9a07d247dd04d24702665 /Makefile | |
| parent | bd352a739fde9834d48379e8eca428fe897144ac (diff) | |
| download | linux-b421b8a6cb87f099466fff00d1870c2db778c617.tar.bz2 | |
kbuild: remove unused archmrproper
No one uses archmrproper.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
@@ -1360,11 +1360,11 @@ mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))  mrproper: rm-files := $(wildcard $(MRPROPER_FILES))  mrproper-dirs      := $(addprefix _mrproper_,scripts) -PHONY += $(mrproper-dirs) mrproper archmrproper +PHONY += $(mrproper-dirs) mrproper  $(mrproper-dirs):  	$(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) -mrproper: clean archmrproper $(mrproper-dirs) +mrproper: clean $(mrproper-dirs)  	$(call cmd,rmdirs)  	$(call cmd,rmfiles)  |