~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/make-lint.py

  • Committer: Brian Aker
  • Date: 2009-12-03 01:17:53 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: brian@gaz-20091203011753-159h2no5m5c5dt9b
Small cleanups, did in MERGE table only engine flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
        'sql_yacc', 'gperf', 'drizzled/probes.h',
128
128
        'drizzled/function_hash.h', 'drizzled/symbol_hash.h',
129
129
        'util/dummy.cc', 'drizzled/sql_yacc.h', 'drizzled/configmake.h',
130
 
        'drizzled/plugin/version.h',
131
 
        'drizzled/plugin/load_list.h']:
 
130
        'drizzled/plugin/config.h']:
132
131
        if exclude in path:
133
132
            return False
134
133
    return True
143
142
 
144
143
sources_list = []
145
144
os.path.walk(srcdir,accumulate_sources,sources_list)
146
 
sources_list.sort()
147
145
for path in sources_list:
148
146
    lint_path(path)
149
147
clean_lints(sources_list)