2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 18:07:12 +01:00

@after->@after_method

This commit is contained in:
Thomas Nagy 2012-02-15 09:29:34 +01:00
parent b3fcd71d50
commit 7efa03bfee

View File

@ -15,7 +15,7 @@ Support for the boo programming language, for example::
from waflib import Task from waflib import Task
from waflib.Configure import conf from waflib.Configure import conf
from waflib.TaskGen import feature, after, before, extension from waflib.TaskGen import feature, after_method, before_method, extension
@extension('.boo') @extension('.boo')
def boo_hook(self, node): def boo_hook(self, node):
@ -24,7 +24,7 @@ def boo_hook(self, node):
pass pass
@feature('boo') @feature('boo')
@before('process_source') @before_method('process_source')
def apply_booc(self): def apply_booc(self):
"""Create a booc task """ """Create a booc task """
src_nodes = self.to_nodes(self.source) src_nodes = self.to_nodes(self.source)
@ -40,7 +40,7 @@ def apply_booc(self):
self.boo_task.env.BOO_TARGET_TYPE = "-target:%s" % type self.boo_task.env.BOO_TARGET_TYPE = "-target:%s" % type
@feature('boo') @feature('boo')
@after('apply_boo') @after_method('apply_boo')
def use_boo(self): def use_boo(self):
"""" """"
boo applications honor the **use** keyword:: boo applications honor the **use** keyword::