From a9514504a3068f74f8753e3ae821f33bcd0d2593 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Mon, 23 Feb 2015 11:38:00 +0100 Subject: [PATCH] forward compat: on_results -> update_outputs --- wafadmin/TaskGen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wafadmin/TaskGen.py b/wafadmin/TaskGen.py index ae1834a..52d0236 100644 --- a/wafadmin/TaskGen.py +++ b/wafadmin/TaskGen.py @@ -567,7 +567,7 @@ def exec_rule(self): if getattr(self, 'cwd', None): tsk.cwd = self.cwd - if getattr(self, 'on_results', None): + if getattr(self, 'on_results', None) or getattr(self, 'update_outputs', None): Task.update_outputs(cls) if getattr(self, 'always', None): -- 2.34.1