]> code.ossystems Code Review - openembedded-core.git/commitdiff
distrodata.bbclass: do not skip -native recipes in checkpkg task
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>
Mon, 27 Jul 2015 16:40:27 +0000 (19:40 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 31 Jul 2015 14:35:36 +0000 (15:35 +0100)
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 <alexander.kanavin@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/distrodata.bbclass

index a22824237ce396e1cd3e159780d4124384bd9e57..af3af331336c827a317a093e33ba86ca9aaa4bf8 100644 (file)
@@ -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()