1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +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:
Richard Purdie
2010-09-30 09:34:54 +01:00
parent adcb01d091
commit 1c91f32f5e
+2
View File
@@ -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]