~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to config/make-lint.py

  • Committer: Brian Aker
  • Date: 2010-05-18 22:31:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1540.
  • Revision ID: brian@gaz-20100518223157-k0i4yxv6t03yrwyk
JoinCache rename.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
    # Let's not lint emacs autosave files
127
127
    if (os.path.split(path)[-1].startswith('.#')):
128
128
        return False
129
 
    # We need to figure out how to better express this
130
 
    for exclude in ['innobase', 'pbxt', 'pbms', 'gnulib', '.pb.', 'bak-header', 'm4',
 
129
    for exclude in ['innobase', 'pbxt', 'gnulib', '.pb.', 'bak-header', 'm4',
131
130
        'sql_yacc', 'gperf', 'drizzled/probes.h',
132
131
        'drizzled/function_hash.h', 'drizzled/symbol_hash.h',
133
132
        'util/dummy.cc', 'drizzled/sql_yacc.h', 'drizzled/configmake.h',
134
133
        'drizzled/plugin/version.h',
135
134
        'drizzled/generated_probes.h',
136
 
        'drizzled/module/load_list.h']:
 
135
        'drizzled/plugin/load_list.h']:
137
136
        if exclude in path:
138
137
            return False
139
138
    return True