summaryrefslogtreecommitdiff
path: root/scripts/tags.sh
diff options
context:
space:
mode:
authorMatt Kraai <kraai@ftbfs.org>2009-04-22 03:38:23 (GMT)
committerSam Ravnborg <sam@ravnborg.org>2009-05-01 08:54:02 (GMT)
commit2e6cb8b0dc602ba4aa23d1ec7e3524a7268f59d9 (patch)
tree617d9fd1a93447027aebb7bf7a9a04183e1bd1bd /scripts/tags.sh
parentc4d5ee67ce26503d7eaf2aca5bb13c58e89d1be8 (diff)
downloadlinux-fsl-qoriq-2e6cb8b0dc602ba4aa23d1ec7e3524a7268f59d9.tar.xz
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>
Diffstat (limited to 'scripts/tags.sh')
-rwxr-xr-xscripts/tags.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh
index 5bd8b10..4a34ec5 100755
--- a/scripts/tags.sh
+++ b/scripts/tags.sh
@@ -164,10 +164,12 @@ case "$1" in
;;
"tags")
+ rm -f tags
xtags ctags
;;
"TAGS")
+ rm -f TAGS
xtags etags
;;
esac