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 *.symversions left-over

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>

+1 -2
-1
.gitignore
··· 46 46 *.so.dbg 47 47 *.su 48 48 *.symtypes 49 - *.symversions 50 49 *.tab.[ch] 51 50 *.tar 52 51 *.xz
+1 -1
Makefile
··· 1946 1946 -o -name '*.c.[012]*.*' \ 1947 1947 -o -name '*.ll' \ 1948 1948 -o -name '*.gcno' \ 1949 - -o -name '*.*.symversions' \) -type f -print \ 1949 + \) -type f -print \ 1950 1950 -o -name '.tmp_*' -print \ 1951 1951 | xargs rm -rf 1952 1952