summaryrefslogtreecommitdiff
path: root/support-files
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2002-01-19 22:46:25 -0700
committersasha@mysql.sashanet.com <>2002-01-19 22:46:25 -0700
commit684f13ef4c20cc1843c615ee17a8013f65617442 (patch)
tree254bb1b067e503a819145fff488d83709bf9c798 /support-files
parentd7ad2cbe5b55d422affe8d180d0cc8dab1c518e1 (diff)
parent56129ce634088b51dd60381711519c9125e8df72 (diff)
downloadmariadb-git-684f13ef4c20cc1843c615ee17a8013f65617442.tar.gz
Ugly merge! But I am not done yet - there are a number of things I need to fix
before I can push
Diffstat (limited to 'support-files')
-rwxr-xr-xsupport-files/build-tags9
1 files changed, 9 insertions, 0 deletions
diff --git a/support-files/build-tags b/support-files/build-tags
new file mode 100755
index 00000000000..d5f9fbf5100
--- /dev/null
+++ b/support-files/build-tags
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+rm -f TAGS
+filter='\.cc$\|\.c$\|\.h$\|\.yy$'
+files=`bk -r sfiles -gU | grep $filter `
+for f in $files ;
+do
+ etags -o TAGS --append $f
+done