summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r--bitbake/lib/bb/siggen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 0c77d72112..a0e70a8ee4 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -185,7 +185,8 @@ class SignatureGeneratorBasic(SignatureGenerator):
185 checksums = bb.fetch2.get_file_checksums(dataCache.file_checksums[fn][task], recipename) 185 checksums = bb.fetch2.get_file_checksums(dataCache.file_checksums[fn][task], recipename)
186 for (f,cs) in checksums: 186 for (f,cs) in checksums:
187 self.file_checksum_values[k][f] = cs 187 self.file_checksum_values[k][f] = cs
188 data = data + cs 188 if cs:
189 data = data + cs
189 190
190 taskdep = dataCache.task_deps[fn] 191 taskdep = dataCache.task_deps[fn]
191 if 'nostamp' in taskdep and task in taskdep['nostamp']: 192 if 'nostamp' in taskdep and task in taskdep['nostamp']: