~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/make-lint.py

Merge Monty

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/config.h']:
 
130
        'drizzled/plugin/load_list.h']:
131
131
        if exclude in path:
132
132
            return False
133
133
    return True
142
142
 
143
143
sources_list = []
144
144
os.path.walk(srcdir,accumulate_sources,sources_list)
 
145
sources_list.sort()
145
146
for path in sources_list:
146
147
    lint_path(path)
147
148
clean_lints(sources_list)