[bitbake-devel] [PATCH] siggen: Fix file variable typo in compare_sigfiles

Jonathan Liu net147 at gmail.com
Sat Aug 20 08:58:13 UTC 2016


Signed-off-by: Jonathan Liu <net147 at gmail.com>
---
 lib/bb/siggen.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 0862cff..3a7dac4 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -367,7 +367,7 @@ def compare_sigfiles(a, b, recursecb = None):
     output = []
 
     with open(a, 'rb') as f:
-        p1 = pickle.Unpickler(ff)
+        p1 = pickle.Unpickler(f)
         a_data = p1.load()
     with open(b, 'rb') as f:
         p2 = pickle.Unpickler(f)
-- 
2.9.3




More information about the bitbake-devel mailing list