diff options
author | Masahiro Yamada | 2019-08-25 10:31:27 +0900 |
---|---|---|
committer | Masahiro Yamada | 2019-08-29 23:54:29 +0900 |
commit | 1634f2bfdb846ed0a8b73131a9dff7c420fb3fe1 (patch) | |
tree | e11cf667281d9d4cb4d1f0f115a3ccef077781ed /scripts/kconfig/Makefile | |
parent | 36de077b20d05321466f8eaba0ae01b9b18ad93c (diff) |
kbuild: remove clean-dirs syntax
The only the difference between clean-files and clean-dirs is the -r
option passed to the 'rm' command.
You can always pass -r, and then remove the clean-dirs syntax.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 7656e1137b6b..bed7a5a2fbe9 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -114,7 +114,7 @@ testconfig: $(obj)/conf $(PYTHON3) -B -m pytest $(srctree)/$(src)/tests \ -o cache_dir=$(abspath $(obj)/tests/.cache) \ $(if $(findstring 1,$(KBUILD_VERBOSE)),--capture=no) -clean-dirs += tests/.cache +clean-files += tests/.cache # Help text used by make help help: |