Remove leftover 'print' statements

This commit is contained in:
Thomas Nagy 2016-07-27 20:22:48 +02:00
parent 7aaa7c14ba
commit 3c2c6a62b0
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
2 changed files with 1 additions and 4 deletions

View File

@ -71,9 +71,6 @@ def path_to_node(base_node, path, cached_nodes):
return node
def post_run(self):
print(id(self), "gccdeps post run")
# The following code is executed by threads, it is not safe, so a lock is needed...
if not self.__class__.__name__ in self.env.ENABLE_GCCDEPS:
return super(self.derived_gccdeps, self).post_run()

View File

@ -71,10 +71,10 @@ def path_to_node(base_node, path, cached_nodes):
return node
def post_run(self):
print(id(self), "msvcdeps post run")
if self.env.CC_NAME not in supported_compilers:
return super(self.derived_msvcdeps, self).post_run()
# TODO this is unlikely to work with netcache
if getattr(self, 'cached', None):
return Task.Task.post_run(self)