mirror of
git://git.yoctoproject.org/poky
synced 2026-08-13 13:53:11 +00:00
bitbake/siggen: Fix issue where excluded dependencies caused exceptions
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
parent
adcb01d091
commit
1c91f32f5e
@ -136,6 +136,8 @@ class SignatureGeneratorBasic(SignatureGenerator):
|
||||
data['varvals'] = {}
|
||||
data['varvals'][task] = self.lookupcache[fn][task]
|
||||
for dep in self.taskdeps[fn][task]:
|
||||
if dep in self.basewhitelist:
|
||||
continue
|
||||
data['gendeps'][dep] = self.gendeps[fn][dep]
|
||||
data['varvals'][dep] = self.lookupcache[fn][dep]
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user