mirror of
https://gitlab.com/ita1024/waf.git
synced 2025-01-26 18:20:22 +01:00
Optimize the processing of the targets in bld(rule=)
This commit is contained in:
parent
95951a6f5d
commit
5435fda557
@ -750,7 +750,8 @@ def process_subst(self):
|
||||
tgt = getattr(self, 'target', [])
|
||||
if isinstance(tgt, self.path.__class__):
|
||||
tgt = [tgt]
|
||||
tgt = [isinstance(x, self.path.__class__) and x or self.path.find_or_declare(x) for x in Utils.to_list(tgt)]
|
||||
else:
|
||||
tgt = [isinstance(x, self.path.__class__) and x or self.path.find_or_declare(x) for x in Utils.to_list(tgt)]
|
||||
|
||||
if len(src) != len(tgt):
|
||||
raise Errors.WafError('invalid source or target for %r' % self)
|
||||
|
Loading…
x
Reference in New Issue
Block a user