diff options
author | Jianbin Kang <kjbmail@gmail.com> | 2012-03-08 15:48:03 +0800 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2012-03-26 15:29:52 +0200 |
commit | 98bd46223322a84fdac235a0e40d97f9a1e3144c (patch) | |
tree | 71b450c8f065ad0d2d074f8938cbce0f8fec285c /scripts | |
parent | 8991058171f3536c0a8fbb50ad311689b8b74979 (diff) | |
download | linux-3.10-98bd46223322a84fdac235a0e40d97f9a1e3144c.tar.gz linux-3.10-98bd46223322a84fdac235a0e40d97f9a1e3144c.tar.bz2 linux-3.10-98bd46223322a84fdac235a0e40d97f9a1e3144c.zip |
kbuild: incremental tags update for GNU Global
GNU gtags support '-i' for updating tag files incrementally.
It runs more quickly than generating new tags after kernel source update.
Signed-off-by: Jianbin Kang <kjbmail@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/tags.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tags.sh b/scripts/tags.sh index 833813a99e7..0bc8588b630 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -116,7 +116,7 @@ docscope() dogtags() { - all_sources | gtags -f - + all_sources | gtags -i -f - } exuberant() |