List:Commits« Previous MessageNext Message »
From:Chad MILLER Date:August 6 2008 8:49pm
Subject:bzr push into mysql-5.1 branch (chad:2684 to 2685) Bug#37201
View as plain text  
 2685 Chad MILLER	2008-08-06 [merge]
      Better fix of build-tags, merged from local 5.0-bugteam .
modified:
  support-files/build-tags

 2684 Chad MILLER	2008-08-06 [merge]
      Merge from local 5.0-bugteam.
modified:
  support-files/build-tags

=== modified file 'support-files/build-tags'
--- a/support-files/build-tags	2008-08-06 19:27:28 +0000
+++ b/support-files/build-tags	2008-08-06 20:25:25 +0000
@@ -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

Thread
bzr push into mysql-5.1 branch (chad:2684 to 2685) Bug#37201Chad MILLER6 Aug