This commit is contained in:
Thomas Nagy 2016-08-15 19:44:23 +02:00
parent 7d60c89744
commit 4ff5b8b7a7
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 4 additions and 1 deletions

View File

@ -26,7 +26,10 @@ def wrap_compiled_task(classname):
def run_all(self):
if self.env.NO_STRIPPING:
return cls1.run(self)
return cls1.run(self) or cls2.run(self)
ret = cls1.run(self)
if ret:
return ret
return cls2.run(self)
cls3.run = run_all
for k in 'cprogram cshlib cxxprogram cxxshlib fcprogram fcshlib dprogram dshlib'.split():