Fix waf step

This commit is contained in:
Thomas Nagy 2016-05-13 23:24:02 +02:00
parent 62f8b482ab
commit 9a5b0e41ac
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 5 additions and 2 deletions

View File

@ -261,8 +261,11 @@ class BuildContext(Context.Context):
m = self.progress_line(c, c, Logs.colors.BLUE, Logs.colors.NORMAL)
Logs.info(m, extra={'stream': sys.stderr, 'c1': Logs.colors.cursor_off, 'c2' : Logs.colors.cursor_on})
Logs.info("Waf: Leaving directory `%s'" % self.variant_dir)
self.producer.bld = None
self.producer = None
try:
self.producer.bld = None
self.producer = None
except AttributeError:
pass
self.post_build()
def restore(self):