VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Masahiro Yamada <masahiroy@kernel.org> 2021-02-26 04:39:12 +0900 committer: Kees Cook <keescook@chromium.org> 2021-02-25 12:21:06 -0800 commit: 4c7858b9001c85aacf86a74b3a68aa384bc33760 parent: 3d1dc719bca9988e08a8d68363a5c2514ccaf5d4
Commit Summary:
kbuild: Move .thinlto-cache removal to 'make clean'
Diffstat:
1 file changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 639873def1fd..b21531de24f9 100644
--- a/Makefile
+++ b/Makefile
@@ -1491,7 +1491,7 @@ endif # CONFIG_MODULES
 # Directories & files removed with 'make clean'
 CLEAN_FILES += include/ksym vmlinux.symvers \
 	       modules.builtin modules.builtin.modinfo modules.nsdeps \
-	       compile_commands.json
+	       compile_commands.json .thinlto-cache
 
 # Directories & files removed with 'make mrproper'
 MRPROPER_FILES += include/config include/generated          \
@@ -1505,7 +1505,7 @@ MRPROPER_FILES += include/config include/generated          \
 		  *.spec
 
 # Directories & files removed with 'make distclean'
-DISTCLEAN_FILES += tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS .thinlto-cache
+DISTCLEAN_FILES += tags TAGS cscope* GPATH GTAGS GRTAGS GSYMS
 
 # clean - Delete most, but leave enough to build external modules
 #