From: Alexander Kanavin Date: Mon, 27 Jul 2015 16:40:27 +0000 (+0300) Subject: distrodata.bbclass: do not skip -native recipes in checkpkg task X-Git-Tag: 2015-10~1001 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c63d1a544a3021a4eee2171fc710e71dfa7e6b07;p=openembedded-core.git distrodata.bbclass: do not skip -native recipes in checkpkg task Some recipes are available only in the -native flavour, and we need to check their upstream version too from the command line. Signed-off-by: Alexander Kanavin Signed-off-by: Ross Burton --- diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index a22824237c..af3af33133 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass @@ -218,9 +218,6 @@ python checkpkg_eventhandler() { header = row continue - if '-native' in pn or 'nativesdk-' in pn: - continue - if not pn in package_dict.keys(): package_dict[pn] = row f.close()