~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/clean_source.sh

  • Committer: Monty Taylor
  • Date: 2009-07-15 21:16:34 UTC
  • mto: (1093.1.20 captain)
  • mto: This revision was merged to the branch mainline in revision 1098.
  • Revision ID: mordred@inaugust.com-20090715211634-0pxr1okih9ixgniu
Fixes to the uncrustify config and script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#  along with this program; if not, write to the Free Software
16
16
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
17
 
18
 
for file in `ack-grep -f | grep -v innobase | grep -v '\.pb\.'| grep -v bak-header | grep -v '^intl' | grep -v '^config' `; do
 
18
for file in `ack-grep -f | grep -v innobase | grep -v '\.pb\.'| grep -v bak-header | grep -v '^intl' | grep -v '^config' | grep -v '\.am$' | grep -v '\.ac$' | grep -v m4 | grep -v sql_yacc.yy | grep -v '.gperf$' `; do
19
19
        grep Copyright $file >/dev/null 2>&1 || echo "No copyright header in $file"
20
 
        uncrustify -c ../config/uncrustify.cfg --replace $file
 
20
        uncrustify -c config/uncrustify.cfg --replace $file
21
21
done
22
22