From 5127a8d8e6d53f5f43a6ada7fd09b6b0c24ae989 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Wed, 17 Apr 2019 19:01:49 +0800 Subject: bitbake-diffsigs: Use 4 spaces as indent for recursecb It used 2 spaces as indent which wasn't clear enough, and might cause confusions, people might think it was in wrong format. Fixed: $ bitbake bc-native -ccleansstate -Snone $ bitbake bc-native -ccleansstate -Snone $ bitbake-diffsigs tmp/stamps/x86_64-linux/bc-native/1.07.1-r0.do_cleansstate.sigdata.* * Before: Hash for dependent task bc/bc_1.07.1.bb.do_clean:virtual:native changed from [foo] Taint (by forced/invalidated task) changed from [foo] Taint (by forced/invalidated task) changed from [foo] * Now Hash for dependent task bc/bc_1.07.1.bb.do_clean:virtual:native changed from [foo] Taint (by forced/invalidated task) changed from [foo] Taint (by forced/invalidated task) changed from [foo] Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- bin/bitbake-diffsigs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/bitbake-diffsigs b/bin/bitbake-diffsigs index fa430bb3b..73229b773 100755 --- a/bin/bitbake-diffsigs +++ b/bin/bitbake-diffsigs @@ -105,7 +105,7 @@ def recursecb(key, hash1, hash2): out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color) for change in out2: for line in change.splitlines(): - recout.append(' ' + line) + recout.append(' ' + line) return recout -- cgit 1.2.3-korg