diff options
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
| -rw-r--r-- | bitbake/lib/bb/siggen.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 02a426864f..b04a8bcecc 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
| @@ -185,8 +185,8 @@ class SignatureGeneratorBasic(SignatureGenerator): | |||
| 185 | if task in dataCache.file_checksums[fn]: | 185 | if task in dataCache.file_checksums[fn]: |
| 186 | checksums = bb.fetch2.get_file_checksums(dataCache.file_checksums[fn][task], recipename) | 186 | checksums = bb.fetch2.get_file_checksums(dataCache.file_checksums[fn][task], recipename) |
| 187 | for (f,cs) in checksums: | 187 | for (f,cs) in checksums: |
| 188 | self.file_checksum_values[k][f] = cs | 188 | self.file_checksum_values[k][f] = cs |
| 189 | data = data + cs | 189 | data = data + cs |
| 190 | 190 | ||
| 191 | taint = self.read_taint(fn, task, dataCache.stamp[fn]) | 191 | taint = self.read_taint(fn, task, dataCache.stamp[fn]) |
| 192 | if taint: | 192 | if taint: |
| @@ -372,24 +372,24 @@ def compare_sigfiles(a, b): | |||
| 372 | changed, added, removed = dict_diff(a, b) | 372 | changed, added, removed = dict_diff(a, b) |
| 373 | if added: | 373 | if added: |
| 374 | for dep in added: | 374 | for dep in added: |
| 375 | bdep_found = False | 375 | bdep_found = False |
| 376 | if removed: | 376 | if removed: |
| 377 | for bdep in removed: | 377 | for bdep in removed: |
| 378 | if a[dep] == b[bdep]: | 378 | if a[dep] == b[bdep]: |
| 379 | #print "Dependency on task %s was replaced by %s with same hash" % (dep, bdep) | 379 | #print "Dependency on task %s was replaced by %s with same hash" % (dep, bdep) |
| 380 | bdep_found = True | 380 | bdep_found = True |
| 381 | if not bdep_found: | 381 | if not bdep_found: |
| 382 | print "Dependency on task %s was added with hash %s" % (dep, a[dep]) | 382 | print "Dependency on task %s was added with hash %s" % (dep, a[dep]) |
| 383 | if removed: | 383 | if removed: |
| 384 | for dep in removed: | 384 | for dep in removed: |
| 385 | adep_found = False | 385 | adep_found = False |
| 386 | if added: | 386 | if added: |
| 387 | for adep in added: | 387 | for adep in added: |
| 388 | if a[adep] == b[dep]: | 388 | if a[adep] == b[dep]: |
| 389 | #print "Dependency on task %s was replaced by %s with same hash" % (adep, dep) | 389 | #print "Dependency on task %s was replaced by %s with same hash" % (adep, dep) |
| 390 | adep_found = True | 390 | adep_found = True |
| 391 | if not adep_found: | 391 | if not adep_found: |
| 392 | print "Dependency on task %s was removed with hash %s" % (dep, b[dep]) | 392 | print "Dependency on task %s was removed with hash %s" % (dep, b[dep]) |
| 393 | if changed: | 393 | if changed: |
| 394 | for dep in changed: | 394 | for dep in changed: |
| 395 | print "Hash for dependent task %s changed from %s to %s" % (dep, a[dep], b[dep]) | 395 | print "Hash for dependent task %s changed from %s to %s" % (dep, a[dep], b[dep]) |
