diff mbox series

kbuild: remove *.symversions left-over

Message ID 20240818083806.90631-1-masahiroy@kernel.org (mailing list archive)
State New
Headers show
Series kbuild: remove *.symversions left-over | expand

Commit Message

Masahiro Yamada Aug. 18, 2024, 8:37 a.m. UTC
Commit 5ce2176b81f7 ("genksyms: adjust the output format to modpost")
stopped generating *.symversions files.

Remove the left-over from the .gitignore file and the 'clean' rule.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---

 .gitignore | 1 -
 Makefile   | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

Comments

Nathan Chancellor Aug. 20, 2024, 9:55 p.m. UTC | #1
On Sun, Aug 18, 2024 at 05:37:29PM +0900, Masahiro Yamada wrote:
> Commit 5ce2176b81f7 ("genksyms: adjust the output format to modpost")
> stopped generating *.symversions files.
> 
> Remove the left-over from the .gitignore file and the 'clean' rule.
> 
> Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

Reviewed-by: Nathan Chancellor <nathan@kernel.org>

> ---
> 
>  .gitignore | 1 -
>  Makefile   | 2 +-
>  2 files changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/.gitignore b/.gitignore
> index 7902adf4f7f1..ac8c667c0df6 100644
> --- a/.gitignore
> +++ b/.gitignore
> @@ -46,7 +46,6 @@
>  *.so.dbg
>  *.su
>  *.symtypes
> -*.symversions
>  *.tab.[ch]
>  *.tar
>  *.xz
> diff --git a/Makefile b/Makefile
> index 0a364e34f50b..c8d651a30397 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -1946,7 +1946,7 @@ clean: $(clean-dirs)
>  		-o -name '*.c.[012]*.*' \
>  		-o -name '*.ll' \
>  		-o -name '*.gcno' \
> -		-o -name '*.*.symversions' \) -type f -print \
> +		\) -type f -print \
>  		-o -name '.tmp_*' -print \
>  		| xargs rm -rf
>  
> -- 
> 2.43.0
>
diff mbox series

Patch

diff --git a/.gitignore b/.gitignore
index 7902adf4f7f1..ac8c667c0df6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,7 +46,6 @@ 
 *.so.dbg
 *.su
 *.symtypes
-*.symversions
 *.tab.[ch]
 *.tar
 *.xz
diff --git a/Makefile b/Makefile
index 0a364e34f50b..c8d651a30397 100644
--- a/Makefile
+++ b/Makefile
@@ -1946,7 +1946,7 @@  clean: $(clean-dirs)
 		-o -name '*.c.[012]*.*' \
 		-o -name '*.ll' \
 		-o -name '*.gcno' \
-		-o -name '*.*.symversions' \) -type f -print \
+		\) -type f -print \
 		-o -name '.tmp_*' -print \
 		| xargs rm -rf