Browse Source

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

pull/73/head
Chad MILLER 18 years ago
parent
commit
297593c5d3
  1. 7
      support-files/build-tags

7
support-files/build-tags

@ -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
Loading…
Cancel
Save