From 6ebdeb48c40aa6b45b733e885dfec8ceb6a32221 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 10 May 2013 16:16:26 +0100 Subject: [PATCH] bitbake: cooker: Drop unused variables from collect_bbfiles() (Bitbake rev: 67a8e13eed6433bd1e4fab82ece5f6774b42fa00) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 6d448b4c6d..5c52d85901 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1394,7 +1394,7 @@ class BBCooker: def collect_bbfiles( self ): """Collect all available .bb build files""" - parsed, cached, skipped, masked = 0, 0, 0, 0 + masked = 0 collectlog.debug(1, "collecting .bb files")