#At file:///home/cmiller/work/mysqlbzr/mysql-6.0-bugteam--bug31605/
2748 Chad MILLER 2008-08-07 [merge]
Merge from local 5.1-bugteam.
modified:
support-files/build-tags
=== modified file 'support-files/build-tags'
--- a/support-files/build-tags 2008-05-23 07:42:40 +0000
+++ b/support-files/build-tags 2008-08-07 20:33:48 +0000
@@ -1,9 +1,12 @@
#! /bin/sh
rm -f TAGS
-filter='\.cc$\|\.c$\|\.h$\|\.yy\|\.[ch]pp$'
-files=`find . | grep $filter `
-for f in $files ;
+filter='\.cc$\|\.c$\|\.h$\|\.yy$'
+
+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
| Thread |
|---|
| • bzr commit into mysql-6.0-bugteam branch (chad:2748) Bug#37201 | Chad MILLER | 7 Aug |