2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00

Fix the method specification in syms.py

This commit is contained in:
Thomas Nagy 2017-01-06 23:08:05 +01:00
parent c2baf7f9bf
commit a3c44f5d9b
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA

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]