mirror of
https://github.com/MariaDB/server.git
synced 2025-08-23 03:54:27 +03:00
fixed typo on sql_repl.cc added build-tags script for the benefit of the poor, sick, and afflicted, as Matt likes to say :-) Docs/manual.texi: replication updates sql/sql_repl.cc: fixed typo in comment
12 lines
256 B
Bash
Executable File
12 lines
256 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if [ ! -f configure.in ] ; then
|
|
echo "$0 must be run from MySQL source root"
|
|
exit 1
|
|
fi
|
|
|
|
rm -f TAGS
|
|
find -not -path \*SCCS\* -and \
|
|
\( -name \*.cc -or -name \*.h -or -name \*.yy -or -name \*.c \) \
|
|
-print -exec etags -o TAGS --append {} \;
|