Fix the method specification in syms.py

This commit is contained in:
Thomas Nagy 2017-01-06 23:08:05 +01:00
parent 3938bb89aa
commit 3a12b52372
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class compile_sym(Task):
raise WafError('NotImplemented')
@feature('syms')
@after_method('process_source', 'process_use', 'apply_link', 'process_uselib_local')
@after_method('process_source', 'process_use', 'apply_link', 'propagate_uselib_vars')
def do_the_symbol_stuff(self):
ins = [x.outputs[0] for x in self.compiled_tasks]
self.gen_sym_tasks = [self.create_task('gen_sym', x, x.change_ext('.%d.sym' % self.idx)) for x in ins]