kbuild: remove a tag file before it is regenerated

If a tag file is not removed before it is regenerated, the newly
generated data is appended to the old, which preserves stale data and
makes the tag file grow over time.

Signed-off-by: Matt Kraai <kraai@ftbfs.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Matt Kraai 2009-04-21 20:38:23 -07:00 коммит произвёл Sam Ravnborg
Родитель c4d5ee67ce
Коммит 2e6cb8b0dc
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -164,10 +164,12 @@ case "$1" in
;;
"tags")
rm -f tags
xtags ctags
;;
"TAGS")
rm -f TAGS
xtags etags
;;
esac