aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-07-27 19:40:27 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-31 15:35:36 +0100
commitc63d1a544a3021a4eee2171fc710e71dfa7e6b07 (patch)
tree696d6b4b4bbd50530c8d2747ca958b98703b7303
parent6a68e5d9ee6122f0ed70396569eb6cd1a3297c9d (diff)
downloadopenembedded-core-contrib-c63d1a544a3021a4eee2171fc710e71dfa7e6b07.tar.gz
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 <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r--meta/classes/distrodata.bbclass3
1 files changed, 0 insertions, 3 deletions
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()