Commit 2c933391 authored by Chad MILLER's avatar Chad MILLER

Better fix of build-tags, merged from local 5.0-bugteam .

parents d771e014 82d13392
......@@ -2,8 +2,11 @@
rm -f TAGS
filter='\.cc$\|\.c$\|\.h$\|\.yy$'
files=`bzr ls --kind=file | grep $filter `
for f in $files ;
list="find . -type f"
bzr root >/dev/null 2>/dev/null && list="bzr ls --kind=file --versioned"
$list |grep $filter |while read f;
do
etags -o TAGS --append $f
done
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment